From c696ec513a8c0e1dcfbfe6de791fac54b0e6356a Mon Sep 17 00:00:00 2001 From: Tony Date: Mon, 6 Jan 2025 22:43:49 -0500 Subject: [PATCH] Update README.md --- README.md | 43 +++++++++++++++++++++++-------------------- 1 file changed, 23 insertions(+), 20 deletions(-) diff --git a/README.md b/README.md index 5b2e274..e0db338 100644 --- a/README.md +++ b/README.md @@ -4,32 +4,35 @@ Dockerfile and compose for 4get bleeding edge, with PUID and PGID. ## Dockerfile Simply git clone this repo: -``` +```bash git clone https://git.plunked.party/tony/4get-apache ``` and then run ./rebuild: -``` +```bash cd 4get-apache/ chmod +x ./rebuild ./rebuild ``` ## Docker Compose -```yml -fourget: - container_name: fourget - image: fourget-apache - restart: ${RESTART_MODE} - environment: - - FOURGET_SERVER_NAME=4get.plunked.party - - FOURGET_SERVER_LONG_DESCRIPTION="PLUNKED!!!!" - - FOURGET_SERVER_SHORT_DESCRIPTION="click here 4 sum fun." - - FOURGET_BOT_PROTECTION=0 - - FOURGET_DEFAULT_THEME="Dark" - - PUID=${FOURGET_ID} - - PGID=${FOURGET_ID} - - PORT=6969 - volumes: - - ./4get/banner:/var/www/html/4get/banner - - ./4get/template/home.html:/var/www/html/4get/template/home.html -``` \ No newline at end of file +Here's an example docker-compose.yaml for the service: +```yaml +services: + fourget: + container_name: fourget + image: fourget-apache + restart: ${RESTART_MODE} + environment: + - FOURGET_SERVER_NAME=4get.plunked.party + - FOURGET_SERVER_LONG_DESCRIPTION="PLUNKED!!!!" + - FOURGET_SERVER_SHORT_DESCRIPTION="click here 4 sum fun." + - FOURGET_BOT_PROTECTION=0 + - FOURGET_DEFAULT_THEME="Dark" + - PUID=${FOURGET_ID} + - PGID=${FOURGET_ID} + - PORT=6969 + 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. \ No newline at end of file