ntfy-alertmanager/docker/docker-compose.yml
Thorben Günther de1c9c58ae
docker: Add redis section to docker-compose file
With a persistent volume.
2023-03-08 22:42:29 +01:00

18 lines
436 B
YAML

version: "3"
services:
ntfy-alertmanager:
image: xenrox/ntfy-alertmanager:latest
container_name: ntfy-alertmanager
volumes:
- ./config:/etc/ntfy-alertmanager/config
ports:
- 127.0.0.1:8080:8080
restart: unless-stopped
# Uncomment if you want to use redis as cache
# redis:
# image: redis:alpine
# container_name: redis
# restart: unless-stopped
# volumes:
# - ./cache:/data