Skip to content

Commit

Permalink
Merge branch 'chore/docker_compose_improvements' into dockerify
Browse files Browse the repository at this point in the history
  • Loading branch information
xadahiya committed Nov 1, 2024
2 parents 9a89893 + 4610701 commit eba0f80
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ services:
snapshotter-local-collector:
image: ${SNAPSHOTTER_COLLECTOR_IMAGE:-ghcr.io/powerloom/snapshotter-lite-local-collector:dockerify}
profiles: ["local-collector"]
depends_on:
redis:
condition: service_healthy
expose:
- ${LOCAL_COLLECTOR_PORT:-50051}
ports:
Expand Down Expand Up @@ -44,9 +47,12 @@ services:
- "rabbitmq"
- "snapshotter-local-collector"
depends_on:
- "redis"
- "rabbitmq"
- "snapshotter-local-collector"
redis:
condition: service_healthy
rabbitmq:
condition: service_healthy
snapshotter-local-collector:
condition: service_started
volumes:
- ./logs/snapshotter:/logs
- ./config:/config
Expand Down

0 comments on commit eba0f80

Please sign in to comment.