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

27 lines
610 B
Django/Jinja

# {{ ansible_managed }}
version: '3.7'
services:
libreddit:
container_name: libreddit
image: libreddit/libreddit:latest
security_opt:
- no-new-privileges
environment:
- PUID=1000
- PGID=1000
- TZ=Asia/Singapore
- LIBREDDIT_DEFAULT_THEME=black
- LIBREDDIT_DEFAULT_SHOW_NSFW=on
restart: unless-stopped
healthcheck:
test: ["CMD", "wget", "--spider", "-q", "--tries=1", "http://localhost:8080/settings"]
interval: 5m
timeout: 3s
ports:
- 8882:8080
networks:
- libreddit
networks:
libreddit:
name: libreddit