diff --git a/e2e/docker-compose.override.yml b/e2e/docker-compose.override.yml index c6aeca99e..1084144c4 100644 --- a/e2e/docker-compose.override.yml +++ b/e2e/docker-compose.override.yml @@ -2,9 +2,6 @@ services: orchestrator: # ... volumes: - - type: bind - source: /var/run/docker.sock - target: /var/run/docker.sock - type: bind source: /tmp target: /tmp diff --git a/installation/docker/docker-compose.yml b/installation/docker/docker-compose.yml index 6ef59124d..5b1b33d11 100644 --- a/installation/docker/docker-compose.yml +++ b/installation/docker/docker-compose.yml @@ -39,6 +39,10 @@ services: replicas: 1 restart_policy: condition: on-failure + volumes: + - type: bind + source: /var/run/docker.sock + target: /var/run/docker.sock healthcheck: test: wget --no-verbose --tries=1 --spider http://127.0.0.1:8082/healthz/ready || exit 1 interval: 10s