Skip to content

Commit

Permalink
Merge pull request #18 from kiwix/update-docker-compose
Browse files Browse the repository at this point in the history
use local images in dev instead of published images
  • Loading branch information
elfkuzco authored Jun 12, 2024
2 parents 0181ad1 + a6ad9ca commit 7504c67
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions dev/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ services:
depends_on:
postgresdb:
condition: service_healthy
image: openzim/mirrors-qa-backend
build:
context: ../backend
container_name: mirrors-qa-backend
environment:
POSTGRES_URI: postgresql+psycopg://mirrors_qa:mirrors_qa@postgresdb:5432/mirrors_qa
Expand All @@ -29,7 +30,9 @@ services:
ports:
- 8000:80
worker_manager:
image: openzim/mirrors-qa-worker-manager
build:
context: ../worker
dockerfile: manager.Dockerfile
container_name: mirrors-qa-worker-manager
environment:
- BACKEND_ROOT_API=http://backend
Expand Down

0 comments on commit 7504c67

Please sign in to comment.