2022-11-18 09:12:28 +00:00
|
|
|
version: "2.3"
|
|
|
|
|
|
|
|
services:
|
|
|
|
mastodon:
|
2023-04-06 21:14:28 +01:00
|
|
|
image: lscr.io/linuxserver/mastodon:4.1.2
|
2022-11-18 09:12:28 +00:00
|
|
|
environment:
|
|
|
|
- TZ={{ timezone }}
|
|
|
|
- PUID={{ docker_user.id }}
|
|
|
|
- PGID={{ docker_user.id }}
|
|
|
|
- LOCAL_DOMAIN=theorangeone.net
|
|
|
|
- WEB_DOMAIN=mastodon.theorangeone.net
|
|
|
|
- DATABASE_URL=postgresql://mastodon:mastodon@db/mastodon
|
|
|
|
- REDIS_URL=redis://redis
|
2023-03-25 13:38:05 +00:00
|
|
|
- SIDEKIQ_REDIS_URL=redis://redis/1
|
2022-11-18 09:12:28 +00:00
|
|
|
- SECRET_KEY_BASE={{ secret_key_base }}
|
|
|
|
- OTP_SECRET={{ otp_secret }}
|
|
|
|
- VAPID_PRIVATE_KEY={{ vapid_private_key }}
|
|
|
|
- VAPID_PUBLIC_KEY={{ vapid_public_key }}
|
|
|
|
- TRUSTED_PROXY_IP=172.20.0.1
|
|
|
|
- SINGLE_USER_MODE=true
|
|
|
|
- DEFAULT_LOCALE=en
|
2022-11-20 23:00:58 +00:00
|
|
|
- STREAMING_CLUSTER_NUM=1
|
2023-03-25 13:38:05 +00:00
|
|
|
- WEB_CONCURRENCY=0 # 0 means 1, but not in clustered mode
|
|
|
|
- SIDEKIQ_THREADS=1
|
2022-11-20 23:00:58 +00:00
|
|
|
- MAX_THREADS={{ ansible_processor_nproc }}
|
2022-11-18 09:12:28 +00:00
|
|
|
- HTTP_PROXY={{ pve_hosts.qbittorrent.ip }}:3128
|
|
|
|
- HTTPS_PROXY={{ pve_hosts.qbittorrent.ip }}:3128
|
|
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
|
|
- "{{ app_data_dir }}/mastodon:/config/mastodon"
|
|
|
|
depends_on:
|
|
|
|
- db
|
|
|
|
- redis
|
|
|
|
networks:
|
|
|
|
- default
|
|
|
|
- traefik
|
|
|
|
tmpfs:
|
|
|
|
- /var/cache
|
|
|
|
- /config/log
|
|
|
|
labels:
|
|
|
|
- traefik.enable=true
|
|
|
|
- traefik.http.routers.mastodon.rule=Host(`mastodon.theorangeone.net`)
|
|
|
|
- traefik.http.services.mastodon-mastodon.loadbalancer.server.port=443
|
|
|
|
- traefik.http.services.mastodon-mastodon.loadbalancer.server.scheme=https
|
|
|
|
|
|
|
|
db:
|
|
|
|
image: postgres:14-alpine
|
|
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
2023-05-14 21:05:32 +01:00
|
|
|
- ./db:/var/lib/postgresql/data
|
2022-11-18 09:12:28 +00:00
|
|
|
environment:
|
|
|
|
- POSTGRES_PASSWORD=mastodon
|
|
|
|
- POSTGRES_USER=mastodon
|
|
|
|
|
|
|
|
redis:
|
2022-11-21 16:02:19 +00:00
|
|
|
image: redis:7-alpine
|
2022-11-18 09:12:28 +00:00
|
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
2023-05-14 21:05:32 +01:00
|
|
|
- ./redis:/data
|
2022-11-18 09:12:28 +00:00
|
|
|
|
|
|
|
networks:
|
|
|
|
traefik:
|
|
|
|
external: true
|