mirror of
https://github.com/AuxXxilium/docker-ddns-server.git
synced 2024-11-23 14:50:59 +07:00
docker-compose: update
Signed-off-by: AuxXxilium <info@auxxxilium.tech>
This commit is contained in:
parent
9a3dae1756
commit
3441b68c07
@ -1,17 +1,27 @@
|
|||||||
version: '3'
|
version: '3'
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
bind-data:
|
||||||
|
database:
|
||||||
|
|
||||||
services:
|
services:
|
||||||
ddns:
|
ddns:
|
||||||
image: bbaerthlein/docker-ddns-server:latest
|
image: auxxxilium/docker-ddns-server:latest
|
||||||
restart: always
|
container_name: ddns
|
||||||
|
restart: unless-stopped
|
||||||
environment:
|
environment:
|
||||||
|
DDNS_TITLE: 'Your DDNS'
|
||||||
DDNS_ADMIN_LOGIN: 'admin:$$3$$abcdefg'
|
DDNS_ADMIN_LOGIN: 'admin:$$3$$abcdefg'
|
||||||
DDNS_DOMAINS: 'dyndns.example.com'
|
DDNS_DOMAINS: 'dyndns.example.com'
|
||||||
DDNS_PARENT_NS: 'ns.example.com'
|
DDNS_PARENT_NS: 'ns.example.com'
|
||||||
DDNS_DEFAULT_TTL: '3600'
|
DDNS_DEFAULT_TTL: '600'
|
||||||
|
DDNS_CLEAR_LOG_INTERVAL: '600'
|
||||||
|
DDNS_ALLOW_WILDCARD: 'TRUE'
|
||||||
|
DDNS_LOGOUT_URL: 'https://your-domain.com'
|
||||||
ports:
|
ports:
|
||||||
|
- "8080:8080"
|
||||||
- "53:53"
|
- "53:53"
|
||||||
- "53:53/udp"
|
- "53:53/udp"
|
||||||
- "8080:8080"
|
|
||||||
volumes:
|
volumes:
|
||||||
- ./bind-data:/var/cache/bind
|
- bind-data:/var/cache/bind
|
||||||
- ./database:/root/database
|
- database:/root/database
|
Loading…
Reference in New Issue
Block a user