Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(docker): run docker from within the container #762

Merged
merged 3 commits into from
Oct 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions e2e/docker-compose.override.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 4 additions & 0 deletions installation/docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
fishkerez marked this conversation as resolved.
Show resolved Hide resolved
healthcheck:
test: wget --no-verbose --tries=1 --spider http://127.0.0.1:8082/healthz/ready || exit 1
interval: 10s
Expand Down
Loading