Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .package/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -426,6 +426,8 @@ services:
- 8083
- 53/udp
- 53/tcp
entrypoint: sh -c "chown 0:0 /etc/powerdns/recursor.d &&
exec /usr/bin/tini -- /usr/local/sbin/pdns_recursor-startup"
volumes:
- ./recursor.conf:/etc/powerdns/recursor.conf
- forward_zones:/etc/powerdns/recursor.d/
Expand Down
4 changes: 4 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -572,6 +572,7 @@ services:
pdnsdist:
image: powerdns/dnsdist-19:1.9.11
container_name: pdnsdist
user: "0:0"
networks:
md_net:
ipv4_address: 172.20.0.201
Expand All @@ -588,13 +589,16 @@ services:
pdns_recursor:
image: powerdns/pdns-recursor-51:5.1.7
container_name: pdns_recursor
user: "0:0"
networks:
md_net:
ipv4_address: 172.20.0.200
expose:
- 8083
- 53/udp
- 53/tcp
entrypoint: sh -c "chown 0:0 /etc/powerdns/recursor.d &&
exec /usr/bin/tini -- /usr/local/sbin/pdns_recursor-startup"
volumes:
- ./.package/recursor.conf:/etc/powerdns/recursor.conf
- forward_zones:/etc/powerdns/recursor.d/
Expand Down
Loading