diff options
author | Matthew Lemon <y@yulqen.org> | 2024-03-04 16:25:23 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-03-04 16:25:23 +0000 |
commit | 704d827a2ca8af1d4767c2cbf8ee9cf54d5e5812 (patch) | |
tree | 9f24f902e4f1f5f6178abd41b4c7c74169e5bf66 /compose.yaml |
Initial commit
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 |