init config

This commit is contained in:
2026-02-09 01:04:26 +01:00
commit 193855b2b5
5 changed files with 91 additions and 0 deletions

26
docker-compose.yml Normal file
View File

@@ -0,0 +1,26 @@
# 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