docker-ddns-server/deployment/docker-compose.yml
Benjamin Bärthlein c4809b85b4 initial commit
2020-03-28 17:56:11 +01:00

17 lines
430 B
YAML

version: '3'
services:
ddns:
image: bbaerthlein/docker-ddns-server:latest
restart: always
environment:
DDNS_ADMIN_LOGIN: 'admin:$$3$$abcdefg'
DDNS_DOMAIN: 'dyndns.example.com'
DDNS_PARENT_NS: 'ns.example.com'
DDNS_DEFAULT_TTL: '3600'
ports:
- "53:53"
- "53:53/udp"
- "8080:8080"
volumes:
- ./bind-data:/var/cache/bind
- ./database:/root/dyndns/database