추가 'docker-compose.yml'
This commit is contained in:
42
docker-compose.yml
Normal file
42
docker-compose.yml
Normal file
@@ -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
|
||||
Reference in New Issue
Block a user