diff options
Diffstat (limited to 'compose.yaml')
-rw-r--r-- | compose.yaml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/compose.yaml b/compose.yaml new file mode 100644 index 0000000..c366fcb --- /dev/null +++ b/compose.yaml @@ -0,0 +1,23 @@ +version: "3" + +services: + bind9: + networks: + - macvlan-net + container_name: bind9-dns-server + image: ubuntu/bind9:latest + environment: + - BIND9_USER=root + - TX=Europe/London + ports: + - "192.168.1.10:53:53/udp" + - "192.168.1.10:53:53/tcp" + volumes: + - ./config:/etc/bind + - ./cache:/var/cache/bind + - ./records:/var/lib/bind + restart: unless-stopped +networks: + macvlan-net: + external: true + name: custommacvlan |