mirror of
https://github.com/hexastack/hexabot
synced 2025-01-22 10:35:37 +00:00
fix: docker compose force build in dev env
This commit is contained in:
parent
9f3aefcb72
commit
bb52f2a1d5
@ -4,6 +4,7 @@ services:
|
||||
database-init:
|
||||
build:
|
||||
context: ../api
|
||||
pull_policy: build
|
||||
volumes:
|
||||
- ../api/src:/app/src
|
||||
- ../api/migrations:/app/migrations
|
||||
@ -12,6 +13,7 @@ services:
|
||||
api:
|
||||
build:
|
||||
context: ../api
|
||||
pull_policy: build
|
||||
ports:
|
||||
- ${API_PORT}:3000
|
||||
- 9229:9229 # vscode debug port
|
||||
@ -39,11 +41,13 @@ services:
|
||||
build:
|
||||
context: ../
|
||||
dockerfile: ./frontend/Dockerfile
|
||||
pull_policy: build
|
||||
|
||||
widget:
|
||||
build:
|
||||
context: ../widget
|
||||
target: development
|
||||
pull_policy: build
|
||||
volumes:
|
||||
- ../widget/src:/app/src
|
||||
ports:
|
||||
|
Loading…
Reference in New Issue
Block a user