Files
docker-infrastructure/ntfy/docker-compose.yml
2022-09-16 16:16:08 +05:30

23 lines
376 B
YAML

version: '3.8'
services:
ntfy:
image: binwiederhier/ntfy:latest
container_name: ntfy
restart: unless-stopped
command:
- serve
volumes:
- ./cache:/var/cache/ntfy
- ./ntfy-data:/etc/ntfy
- ./ntfy-access-db:/var/lib/ntfy
env_file:
- .env
networks:
- proxy-network
networks:
proxy-network:
external: true