Skip to content

Commit

Permalink
fix: update docker compose file for building dev image (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
Phelan164 committed Feb 22, 2022
1 parent c918e77 commit 83cba09
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ services:
timeout: 20s
retries: 10
model-backend-migrate:
image: instill/model-backend:latest
build:
context: .
image: instill/model-backend:dev
container_name: model-backend-migrate
depends_on:
database:
Expand All @@ -24,7 +26,9 @@ services:
entrypoint: ./model-backend-migrate

model-backend:
image: instill/model-backend:latest
build:
context: .
image: instill/model-backend:dev
container_name: model-backend
depends_on:
triton-server:
Expand Down

0 comments on commit 83cba09

Please sign in to comment.