chore: configure docker-compose and volume folders
This commit is contained in:
parent
d7bbe2a945
commit
aca6e8dac2
2 changed files with 17 additions and 0 deletions
|
|
@ -1,3 +1,9 @@
|
||||||
#SPDX-License-Identifier: MIT-0
|
#SPDX-License-Identifier: MIT-0
|
||||||
---
|
---
|
||||||
# defaults file for base
|
# defaults file for base
|
||||||
|
|
||||||
|
# Global docker compose directory configuration
|
||||||
|
docker_compose_base_dir: /etc/docker/compose
|
||||||
|
|
||||||
|
# Global docker volume directory configuration
|
||||||
|
docker_volume_base_dir: /srv/data
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,14 @@
|
||||||
#SPDX-License-Identifier: MIT-0
|
#SPDX-License-Identifier: MIT-0
|
||||||
---
|
---
|
||||||
# defaults file for reverseproxy
|
# defaults file for reverseproxy
|
||||||
|
|
||||||
|
# Service-specific configuration
|
||||||
|
service_name: reverseproxy
|
||||||
|
docker_compose_dir: "{{ docker_compose_base_dir }}/{{ service_name }}"
|
||||||
|
docker_volume_dir: "{{ docker_volume_base_dir }}/{{ service_name }}"
|
||||||
|
|
||||||
|
# Provider configuration
|
||||||
|
use_static_services: false # Use all_services from dynamic.yml for outward-facing proxies
|
||||||
|
use_docker_provider: true # Use Docker provider for service discovery via labels
|
||||||
|
use_ssl: false # Enable SSL termination with Let's Encrypt
|
||||||
|
enable_dashboard: true # Enable Traefik dashboard
|
||||||
Loading…
Add table
Add a link
Reference in a new issue