26 lines
736 B
YAML
26 lines
736 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
|
|
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 |