This repository has been archived on 2023-12-26. You can view files and clone it, but cannot push or open issues or pull requests.
shoarma/ansible/roles/mastodon/docker-stack.yml.j2

124 lines
4 KiB
Text
Raw Normal View History

2023-05-02 15:13:13 +00:00
# vi: ft=yaml
version: '3'
networks:
traefik:
external: true
mastodon:
volumes:
2023-06-22 11:32:58 +00:00
system:
driver_opts:
type: "nfs"
o: "addr=192.168.30.10,nolock,soft,rw"
device: ":/mnt/data/mastodon/system"
2023-05-02 15:13:13 +00:00
services:
web:
2023-06-19 16:37:46 +00:00
image: tootsuite/mastodon:v4.1
2023-05-20 11:45:25 +00:00
environment:
- 'OTP_SECRET={{ otp_secret }}'
- 'SECRET_KEY_BASE={{ secret_key_base }}'
2023-07-12 20:53:18 +00:00
- 'REDIS_HOST=thecloud.dmz'
- 'REDIS_PASSWORD={{ mastodon_redis_password }}'
- 'DB_HOST=192.168.30.10'
2023-05-20 11:45:25 +00:00
- 'DB_USER=mastodon'
- 'DB_NAME=mastodon'
- 'DB_PASS={{ database_passwords.mastodon }}'
2023-05-20 11:45:25 +00:00
- 'VAPID_PRIVATE_KEY={{ vapid_private_key }}'
- 'VAPID_PUBLIC_KEY=BDcpOP2ThgD13i2ENjnlVXG7QH-m3xuNE4rySx6_NBYQz34UxSM3N4nT7GUxN5zBF-Kehlv0CpqBDDa78QFiS0g='
- 'SMTP_SERVER=smtp.tweak.nl'
- 'SMTP_PORT=587'
- 'SMTP_LOGIN='
- 'SMTP_PASSWORD='
- 'SMTP_FROM_ADDRESS=mastodon@kunis.nl'
- 'LOCAL_DOMAIN=social.pizzapim.nl'
2023-05-02 15:13:13 +00:00
command: bash -c "rm -f /mastodon/tmp/pids/server.pid; bundle exec rails s -p 3000"
networks:
- mastodon
- traefik
healthcheck:
test: ['CMD-SHELL', 'wget -q --spider --proxy=off localhost:3000/health || exit 1']
volumes:
2023-06-22 11:32:58 +00:00
- type: volume
source: system
2023-05-02 15:13:13 +00:00
target: /mastodon/public/system
2023-06-22 11:32:58 +00:00
volume:
nocopy: true
2023-07-01 12:07:03 +00:00
- type: bind
source: /mnt/data/mastodon/cache
2023-07-01 12:07:03 +00:00
target: /mastodon/public/system/cache
2023-05-02 15:13:13 +00:00
deploy:
placement:
constraints:
- "node.labels.mastodon == true"
labels:
- traefik.enable=true
- traefik.http.routers.mastodon.entrypoints=websecure
- traefik.http.routers.mastodon.rule=Host(`social.pizzapim.nl`)
- traefik.http.routers.mastodon.tls=true
- traefik.http.routers.mastodon.tls.certresolver=letsencrypt
- traefik.http.services.mastodon.loadbalancer.server.port=3000
- traefik.http.routers.mastodon.service=mastodon
- traefik.docker.network=traefik
streaming:
2023-06-19 16:37:46 +00:00
image: tootsuite/mastodon:v4.1
2023-05-02 15:13:13 +00:00
command: node ./streaming
2023-05-20 11:45:25 +00:00
environment:
2023-07-12 20:53:18 +00:00
- 'REDIS_HOST=thecloud.dmz'
- 'REDIS_PASSWORD={{ mastodon_redis_password }}'
2023-05-20 11:45:25 +00:00
- 'LOCAL_DOMAIN=social.pizzapim.nl'
- 'DB_HOST=192.168.30.10'
2023-07-07 11:17:44 +00:00
- 'DB_USER=mastodon'
- 'DB_NAME=mastodon'
- 'DB_PASS={{ database_passwords.mastodon }}'
2023-05-02 15:13:13 +00:00
networks:
- mastodon
- traefik
healthcheck:
# prettier-ignore
test: ['CMD-SHELL', 'wget -q --spider --proxy=off localhost:4000/api/v1/streaming/health || exit 1']
deploy:
placement:
constraints:
- "node.labels.mastodon == true"
labels:
- traefik.enable=true
- traefik.http.routers.mastodon-streaming.entrypoints=websecure
- "traefik.http.routers.mastodon-streaming.rule=(Host(`social.pizzapim.nl`) && PathPrefix(`/api/v1/streaming`))"
- traefik.http.routers.mastodon-streaming.service=mastodon-streaming
- traefik.http.services.mastodon-streaming.loadbalancer.server.port=4000
2023-07-07 11:17:44 +00:00
- traefik.http.routers.mastodon-streaming.tls=true
- traefik.http.routers.mastodon-streaming.tls.certresolver=letsencrypt
2023-05-02 15:13:13 +00:00
- traefik.docker.network=traefik
sidekiq:
2023-06-19 16:37:46 +00:00
image: tootsuite/mastodon:v4.1
2023-05-02 15:13:13 +00:00
command: bundle exec sidekiq
2023-05-20 11:45:25 +00:00
environment:
- 'OTP_SECRET={{ otp_secret }}'
- 'SECRET_KEY_BASE={{ secret_key_base }}'
2023-07-12 20:53:18 +00:00
- 'REDIS_HOST=thecloud.dmz'
- 'REDIS_PASSWORD={{ mastodon_redis_password }}'
- 'DB_HOST=192.168.30.10'
2023-05-20 11:45:25 +00:00
- 'DB_USER=mastodon'
- 'DB_NAME=mastodon'
- 'DB_PASS={{ database_passwords.mastodon }}'
2023-05-02 15:13:13 +00:00
networks:
- mastodon
volumes:
2023-06-22 11:32:58 +00:00
- type: volume
source: system
2023-05-02 15:13:13 +00:00
target: /mastodon/public/system
2023-06-22 11:32:58 +00:00
volume:
nocopy: true
2023-07-01 12:07:03 +00:00
- type: bind
source: /mnt/data/mastodon/cache
2023-07-01 12:07:03 +00:00
target: /mastodon/public/system/cache
2023-05-02 15:13:13 +00:00
healthcheck:
test: ['CMD-SHELL', "ps aux | grep '[s]idekiq\ 6' || false"]
deploy:
placement:
constraints:
- "node.labels.mastodon == true"