Skip to content

Commit

Permalink
update hashs
Browse files Browse the repository at this point in the history
  • Loading branch information
jsbroks committed Oct 12, 2024
1 parent 6c8d7d2 commit 350b72e
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,17 @@ services:
volumes:
- redis_data:/data

migrations:
image: ctrlplane/migrations:f8372a7
container_name: ctrlplane-migrations
restart: "no"
environment:
DATABASE_URL: postgres://ctrlplane:ctrlplane@postgres:5432/ctrlplane
depends_on:
- postgres

webservice:
image: ctrlplane/webservice
image: ctrlplane/webservice:a324758
container_name: ctrlplane-webservice
environment:
BASE_URL: "http://127.0.0.1" # <set your instance url>
Expand All @@ -36,20 +45,20 @@ services:
DATABASE_URL: postgres://ctrlplane:ctrlplane@postgres:5432/ctrlplane
depends_on:
- postgres
- rabbitmq
- migrations
ports:
- "8080:8080"

job-policy-checker:
image: ctrlplane/job-policy-checker
image: ctrlplane/job-policy-checker:a324758
container_name: ctrlplane-job-policy-checker
environment:
POSTGRES_URL: postgres://ctrlplane:ctrlplane@postgres:5432/ctrlplane
depends_on:
- postgres

event-worker:
image: ctrlplane/event-worker
image: ctrlplane/event-worker:a324758
container_name: ctrlplane-event-worker
environment:
POSTGRES_URL: postgres://ctrlplane:ctrlplane@postgres:5432/ctrlplane
Expand Down

0 comments on commit 350b72e

Please sign in to comment.