Skip to content

Commit

Permalink
Treat all services that depend on a built image similarly for dev env…
Browse files Browse the repository at this point in the history
  • Loading branch information
davidcmoulton committed Jan 30, 2025
1 parent 5d6416a commit a1de5e7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
7 changes: 7 additions & 0 deletions docker-compose.dev.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
services:
setup:
build:
target: dev
volumes:
- ./:/app
app:
build:
target: dev
Expand All @@ -10,3 +15,5 @@ services:
queue-watcher:
build:
target: dev
volumes:
- ./:/app
3 changes: 0 additions & 3 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ services:
build:
context: .
dockerfile: Dockerfile
target: dev
command:
- /bin/bash
- "-c"
Expand All @@ -59,7 +58,6 @@ services:
php bin/console search:setup;
php bin/console keyvalue:setup
volumes:
- ./:/app
- ./config.php:/app/config.php
depends_on:
opensearch:
Expand Down Expand Up @@ -90,7 +88,6 @@ services:
dockerfile: Dockerfile
command: bin/console queue:watch
volumes:
- ./:/app
- ./config.php:/app/config.php
depends_on:
setup:
Expand Down

0 comments on commit a1de5e7

Please sign in to comment.