0
0
opnxng-deploy-playbook/templates/compose/teddit.yaml.j2
2024-06-06 23:52:16 +08:00

53 lines
1.3 KiB
Django/Jinja

# {{ ansible_managed }}
version: '3.7'
services:
teddit:
container_name: teddit
image: teddit/teddit:latest
security_opt:
- no-new-privileges
environment:
- PUID=1000
- PGID=1000
- TZ=Asia/Singapore
- DOMAIN=i.opnxng.com
- USE_HELMET=true
- USE_HELMET_HSTS=true
- TRUST_PROXY=true
- REDIS_HOST=teddit-redis
- THEME=dark
- FLAIRS_ENABLED=false
- API_ENABLED=false
- SUGGESTED_SUBREDDITS=["Saved", "Selfhosted", "Linux", "Privacy", "DataHoarder"]
- DOMAIN_REPLACEMENTS=[["twitter.com","n.opnxng.com"],["quora.com","q.opnxng.com."],["imgur.com","r.opnxng.com"]]
restart: unless-stopped
healthcheck:
test: ["CMD", "wget" ,"--no-verbose", "--tries=1", "--spider", "http://localhost:8080/about"]
interval: 1m
timeout: 3s
ports:
- 8881:8080
depends_on:
- teddit-redis
logging:
driver: none
networks:
- teddit
teddit-redis:
container_name: teddit-redis
image: redis:alpine
command: redis-server
environment:
- PUID=1000
- PGID=1000
- TZ=Asia/Singapore
- REDIS_REPLICATION_MODE=master
restart: unless-stopped
networks:
- teddit
networks:
teddit:
name: teddit