From 24a00eb2e25d653b885a8e373425d3a279490c2a Mon Sep 17 00:00:00 2001 From: throwaway Date: Tue, 12 Sep 2023 21:43:31 -0500 Subject: add docker-compose.yaml and instructions (#12) add docker-compose.yaml and instructions Reviewed-on: https://git.lolcat.ca/lolcat/4get/pulls/12 Co-authored-by: throwaway Co-committed-by: throwaway --- docker-compose.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 docker-compose.yaml (limited to 'docker-compose.yaml') diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..3c34548 --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,17 @@ +version: "3.7" + +services: + fourget: + image: luuul/4get:1.0.0 + restart: always + environment: + - FOURGET_SERVER_NAME=beak.chat + - FOURGET_SERVER_ADMIN_EMAIL="you@example.com" + + ports: + - "80:80" + - "443:443" + + volumes: + - /etc/letsencrypt/live/domain.tld:/etc/4get/certs + - ./banners:/var/www/html/4get/banner -- cgit v1.2.3