Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
11 changes: 10 additions & 1 deletion docker-examples/docker-compose-postgres.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,14 @@ services:
depends_on:
postgres:
condition: service_healthy
redis:
condition: service_started
golem-worker-executor:
condition: service_started
golem-component-service:
condition: service_started
golem-shard-manager:
condition: service_started

golem-component-compilation-service:
image: golemservices/golem-component-compilation-service:latest
Expand Down Expand Up @@ -173,14 +181,15 @@ services:
- GOLEM__PUBLIC_WORKER_API__PORT=${WORKER_SERVICE_GRPC_PORT}
- GOLEM__PUBLIC_WORKER_API__ACCESS_TOKEN="2A354594-7A63-4091-A46B-CC58D379F677"
- GOLEM__COMPILED_COMPONENT_SERVICE__TYPE="Enabled"

- GOLEM__SHARD_MANAGER_SERVICE__TYPE="Grpc"
volumes:
- worker_executor_store:/worker_executor_store
ports:
- "${WORKER_EXECUTOR_HTTP_PORT}:${WORKER_EXECUTOR_HTTP_PORT}"
depends_on:
- redis
- golem-shard-manager
- golem-component-service

volumes:
redis_data:
Expand Down
8 changes: 7 additions & 1 deletion docker-examples/docker-compose-sqlite.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,11 @@ services:
- "${WORKER_SERVICE_GRPC_PORT}:${WORKER_SERVICE_GRPC_PORT}"
volumes:
- golem_db:/app/golem_db
depends_on:
- redis
- golem-worker-executor
- golem-component-service
- golem-shard-manager

golem-component-compilation-service:
image: golemservices/golem-component-compilation-service:latest
Expand Down Expand Up @@ -143,14 +148,15 @@ services:
- GOLEM__PUBLIC_WORKER_API__PORT=${WORKER_SERVICE_GRPC_PORT}
- GOLEM__PUBLIC_WORKER_API__ACCESS_TOKEN="2A354594-7A63-4091-A46B-CC58D379F677"
- GOLEM__COMPILED_COMPONENT_SERVICE__TYPE="Enabled"

- GOLEM__SHARD_MANAGER_SERVICE__TYPE="Grpc"
volumes:
- worker_executor_store:/worker_executor_store
ports:
- "${WORKER_EXECUTOR_HTTP_PORT}:${WORKER_EXECUTOR_HTTP_PORT}"
depends_on:
- redis
- golem-shard-manager
- golem-component-service

volumes:
redis_data:
Expand Down
Loading