infrastructure/ansible/roles/privatebin/files/docker-compose.yml
Jake Howard 3a29c327b7
All checks were successful
/ terraform (push) Successful in 1m0s
/ ansible (push) Successful in 1m47s
Remove version key from compose files
2024-07-15 18:08:14 +01:00

19 lines
476 B
YAML

services:
privatebin:
image: privatebin/nginx-fpm-alpine:latest
environment:
- TZ={{ timezone }}
volumes:
- "{{ app_data_dir }}/privatebin/:/srv/data"
- "{{ app_data_dir }}/privatebin/conf.php:/srv/cfg/conf.php:ro"
restart: unless-stopped
labels:
- traefik.enable=true
- traefik.http.routers.privatebin.rule=Host(`bin.theorangeone.net`)
networks:
- default
- traefik
networks:
traefik:
external: true