Revert "docker-compose: break worker/web dependency"

this breaks downgrade tests; the worker can't unregister in time, since
the web node just goes away immediately, and workers give up when all
web nodes are unreachable, assuming the cluster is being destroyed.

as a result, the check container ends up sticking around on a stalled
worker, and the check eventually times out. a better solution might be
to have checking not attempt to use a container that's on a stalled
worker, but let's not block the pipeline on that in the meantime.

This reverts commit 3a5690d3bb.
This commit is contained in:
Alex Suraci 2020-06-23 13:30:20 -04:00
parent ba0f27a99c
commit ef73d0830c
1 changed files with 1 additions and 0 deletions

View File

@ -37,6 +37,7 @@ services:
image: concourse/concourse:local
command: worker
privileged: true
depends_on: [web]
ports:
- 7777:7777
- 7788:7788