Remove duplicate path separator

This commit is contained in:
Fabio Sinibaldi 2026-08-06 17:47:10 +02:00
parent 9e1f369572
commit 18bcc1e762
1 changed files with 4 additions and 4 deletions

View File

@ -4,7 +4,7 @@ services:
container_name: pangolin
restart: unless-stopped
volumes:
- ./{{ pangolin_config_dir.path }}:/app/config
- {{ pangolin_config_dir.path }}:/app/config
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:3001/api/v1/"]
interval: "3s"
@ -45,9 +45,9 @@ services:
command:
- --configFile=/etc/traefik/traefik_config.yml
volumes:
- ./{{ traefik_config_directory.path }}:/etc/traefik:ro # Volume to store the Traefik configuration
- ./{{ letsencrypt_config_directory.path }}:/letsencrypt # Volume to store the Let's Encrypt certificates
- ./{{ traefik_config_directory.path }}/logs:/var/log/traefik # Volume to store Traefik logs
- {{ traefik_config_directory.path }}:/etc/traefik:ro # Volume to store the Traefik configuration
- {{ letsencrypt_config_directory.path }}:/letsencrypt # Volume to store the Let's Encrypt certificates
- {{ traefik_config_directory.path }}/logs:/var/log/traefik # Volume to store Traefik logs
networks:
default:
driver: bridge