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

Update workers on docker-compose.yml #2379

Merged
merged 4 commits into from
Jul 12, 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
12 changes: 8 additions & 4 deletions docker-compose-aws.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,10 @@ services:
context: .
dockerfile: ./worker-service/Dockerfile
depends_on:
- ipfs-node
- auth-service
ipfs-node:
condition: service_healthy
auth-service:
condition: service_started
env_file:
- ./worker-service/.env.docker
environment:
Expand All @@ -65,8 +67,10 @@ services:
context: .
dockerfile: ./worker-service/Dockerfile
depends_on:
- ipfs-node
- auth-service
ipfs-node:
condition: service_healthy
auth-service:
condition: service_started
env_file:
- ./worker-service/.env.docker
environment:
Expand Down
12 changes: 8 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,10 @@ services:
context: .
dockerfile: ./worker-service/Dockerfile
depends_on:
- ipfs-node
- auth-service
ipfs-node:
condition: service_healthy
auth-service:
condition: service_started
environment:
- GUARDIAN_ENV=${GUARDIAN_ENV}
- SERVICE_CHANNEL:"worker.1"
Expand All @@ -97,8 +99,10 @@ services:
context: .
dockerfile: ./worker-service/Dockerfile
depends_on:
- ipfs-node
- auth-service
ipfs-node:
condition: service_healthy
auth-service:
condition: service_started
environment:
- GUARDIAN_ENV=${GUARDIAN_ENV}
- SERVICE_CHANNEL="worker.2"
Expand Down
12 changes: 8 additions & 4 deletions docker-composeRIL.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,10 @@ services:
context: .
dockerfile: ./worker-service/Dockerfile
depends_on:
- ipfs-node
- auth-service
ipfs-node:
condition: service_healthy
auth-service:
condition: service_started
environment:
- GUARDIAN_ENV=${GUARDIAN_ENV}
- SERVICE_CHANNEL:"worker.1"
Expand All @@ -94,8 +96,10 @@ services:
context: .
dockerfile: ./worker-service/Dockerfile
depends_on:
- ipfs-node
- auth-service
ipfs-node:
condition: service_healthy
auth-service:
condition: service_started
environment:
- GUARDIAN_ENV=${GUARDIAN_ENV}
- SERVICE_CHANNEL="worker.2"
Expand Down
12 changes: 8 additions & 4 deletions docker-compose_SSV.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,10 @@ services:
context: .
dockerfile: ./worker-service/Dockerfile
depends_on:
- ipfs-node
- auth-service
ipfs-node:
condition: service_healthy
auth-service:
condition: service_started
environment:
- GUARDIAN_ENV=${GUARDIAN_ENV}
- SERVICE_CHANNEL=${WORKER_1_SERVICE_CHANNEL}
Expand All @@ -109,8 +111,10 @@ services:
context: .
dockerfile: ./worker-service/Dockerfile
depends_on:
- ipfs-node
- auth-service
ipfs-node:
condition: service_healthy
auth-service:
condition: service_started
environment:
- GUARDIAN_ENV=${GUARDIAN_ENV}
- SERVICE_CHANNEL=${WORKER_2_SERVICE_CHANNEL}
Expand Down