Update README.md

This commit is contained in:
Tony 2025-01-06 22:43:49 -05:00
parent a1e5ee6a54
commit c696ec513a

View File

@ -4,32 +4,35 @@ Dockerfile and compose for 4get bleeding edge, with PUID and PGID.
## Dockerfile ## Dockerfile
Simply git clone this repo: Simply git clone this repo:
``` ```bash
git clone https://git.plunked.party/tony/4get-apache git clone https://git.plunked.party/tony/4get-apache
``` ```
and then run ./rebuild: and then run ./rebuild:
``` ```bash
cd 4get-apache/ cd 4get-apache/
chmod +x ./rebuild chmod +x ./rebuild
./rebuild ./rebuild
``` ```
## Docker Compose ## Docker Compose
```yml Here's an example docker-compose.yaml for the service:
fourget: ```yaml
container_name: fourget services:
image: fourget-apache fourget:
restart: ${RESTART_MODE} container_name: fourget
environment: image: fourget-apache
- FOURGET_SERVER_NAME=4get.plunked.party restart: ${RESTART_MODE}
- FOURGET_SERVER_LONG_DESCRIPTION="PLUNKED!!!!" environment:
- FOURGET_SERVER_SHORT_DESCRIPTION="click here 4 sum fun." - FOURGET_SERVER_NAME=4get.plunked.party
- FOURGET_BOT_PROTECTION=0 - FOURGET_SERVER_LONG_DESCRIPTION="PLUNKED!!!!"
- FOURGET_DEFAULT_THEME="Dark" - FOURGET_SERVER_SHORT_DESCRIPTION="click here 4 sum fun."
- PUID=${FOURGET_ID} - FOURGET_BOT_PROTECTION=0
- PGID=${FOURGET_ID} - FOURGET_DEFAULT_THEME="Dark"
- PORT=6969 - PUID=${FOURGET_ID}
volumes: - PGID=${FOURGET_ID}
- ./4get/banner:/var/www/html/4get/banner - PORT=6969
- ./4get/template/home.html:/var/www/html/4get/template/home.html volumes:
- ./4get/banner:/var/www/html/4get/banner
- ./4get/template/home.html:/var/www/html/4get/template/home.html
``` ```
There's some verbose when running docker compose logs.