mirror of
https://github.com/AuxXxilium/docker-ddns-server.git
synced 2024-11-23 14:50:59 +07:00
3441b68c07
Signed-off-by: AuxXxilium <info@auxxxilium.tech>
27 lines
637 B
YAML
27 lines
637 B
YAML
version: '3'
|
|
|
|
volumes:
|
|
bind-data:
|
|
database:
|
|
|
|
services:
|
|
ddns:
|
|
image: auxxxilium/docker-ddns-server:latest
|
|
container_name: ddns
|
|
restart: unless-stopped
|
|
environment:
|
|
DDNS_TITLE: 'Your DDNS'
|
|
DDNS_ADMIN_LOGIN: 'admin:$$3$$abcdefg'
|
|
DDNS_DOMAINS: 'dyndns.example.com'
|
|
DDNS_PARENT_NS: 'ns.example.com'
|
|
DDNS_DEFAULT_TTL: '600'
|
|
DDNS_CLEAR_LOG_INTERVAL: '600'
|
|
DDNS_ALLOW_WILDCARD: 'TRUE'
|
|
DDNS_LOGOUT_URL: 'https://your-domain.com'
|
|
ports:
|
|
- "8080:8080"
|
|
- "53:53"
|
|
- "53:53/udp"
|
|
volumes:
|
|
- bind-data:/var/cache/bind
|
|
- database:/root/database |