diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4c49bd7 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.env diff --git a/docker-compose.https.yml b/docker-compose.https.yml index 3f7af68..b245804 100644 --- a/docker-compose.https.yml +++ b/docker-compose.https.yml @@ -35,5 +35,5 @@ services: networks: - traefik volumes: - - /var/run/docker.sock:/var/run/docker.sock + - ${SOCKET:-/var/run/docker.sock}:/var/run/docker.sock - "traefik:/etc/traefik" diff --git a/docker-compose.yml b/docker-compose.yml index 4588e3f..e1ccc11 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -30,5 +30,5 @@ services: networks: - traefik volumes: - - /var/run/docker.sock:/var/run/docker.sock + - ${SOCKET:-/var/run/docker.sock}:/var/run/docker.sock - "traefik:/etc/traefik"