From c3f208dcc0072da4cb233ed7818839a4f964314a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=B3=80=EC=A0=95=ED=9B=88?= Date: Fri, 27 Jan 2023 07:11:20 +0000 Subject: [PATCH] =?UTF-8?q?=EC=B6=94=EA=B0=80=20'docker-compose.yml'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docker-compose.yml | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 docker-compose.yml diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..37e077d --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,42 @@ +--- +version: "3" + +services: + mastodon: + image: lscr.io/linuxserver/mastodon:4.0.2 + container_name: mastodon + environment: + - PUID=1000 + - PGID=1000 + - TZ=America/New_York + - LOCAL_DOMAIN= + - REDIS_HOST= + - REDIS_PORT= + - DB_HOST= + - DB_USER= + - DB_NAME= + - DB_PASS= + - DB_PORT= + - ES_ENABLED= + - SECRET_KEY_BASE= + - OTP_SECRET= + - VAPID_PRIVATE_KEY= + - VAPID_PUBLIC_KEY= + - SMTP_SERVER= + - SMTP_PORT= + - SMTP_LOGIN= + - SMTP_PASSWORD= + - SMTP_FROM_ADDRESS= + - S3_ENABLED=false + - WEB_DOMAIN= + volumes: + - ./:/config + ports: + - 80:80 + - 443:443 + restart: unless-stopped + +networks: + default: + external: + name: mastodon \ No newline at end of file