Depend on mocked service, volume mount
This commit is contained in:
parent
160dd060ea
commit
ef752f5e3f
|
@ -4,10 +4,14 @@ services:
|
||||||
chatgpt_web:
|
chatgpt_web:
|
||||||
container_name: chatgpt_web
|
container_name: chatgpt_web
|
||||||
restart: always
|
restart: always
|
||||||
|
depends_on:
|
||||||
|
- mocked_api
|
||||||
env_file:
|
env_file:
|
||||||
- .env
|
- .env
|
||||||
ports:
|
ports:
|
||||||
- 5173:5173
|
- 5173:5173
|
||||||
|
volumes:
|
||||||
|
- .:/app
|
||||||
build:
|
build:
|
||||||
context: "."
|
context: "."
|
||||||
dockerfile: Dockerfile
|
dockerfile: Dockerfile
|
||||||
|
|
Loading…
Reference in New Issue