Files
leonwww/dns/docker-compose.yml

15 lines
347 B
YAML
Raw Normal View History

2025-08-25 13:51:40 +03:00
services:
dns-server:
build:
2025-08-25 13:57:08 +03:00
context: ..
dockerfile: dns/Dockerfile
2025-08-25 13:51:40 +03:00
container_name: gurted-dns-server
2025-08-25 14:13:03 +03:00
network_mode: host
2025-08-25 13:51:40 +03:00
environment:
RUST_LOG: info
volumes:
2025-08-25 13:55:35 +03:00
- ./config.toml:/app/config/config.toml:ro
2025-08-25 13:51:40 +03:00
- ./data:/app/data
2025-08-25 14:51:08 +03:00
- ./certs:/home/matt/gurted/dns/certs:ro
2025-08-25 13:51:40 +03:00
restart: unless-stopped