Remove duplicate path separator
This commit is contained in:
parent
9e1f369572
commit
18bcc1e762
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue