Files
dns-server/docker-compose.yml
T
2026-06-15 17:52:05 +02:00

28 lines
779 B
YAML

# center docker-compose file
# see https://github.com/labmonkey/docker-compose-project-example for more info
# Here I will include all "child" docker compose files that I need.
# The paths can relative to this file or absolue. I've used INCLUDE_PATH variable to make it more cofigurable.
# Whenever I need to remove some service then I can comment out the lines here.
include:
- path:
- ${INCLUDE_PATH}/adguard/adguard.yml
- ${INCLUDE_PATH}/beszel/beszel.yml
env_file: ${INCLUDE_PATH}/.env
networks:
private:
driver: bridge
name: private
ipam:
config:
- subnet: 10.5.0.0/16
gateway: 10.5.0.1
public:
driver: bridge
name: public
ipam:
config:
- subnet: 10.6.0.0/16
gateway: 10.6.0.1