Depend on mocked service, volume mount

This commit is contained in:
Niek van der Maas 2023-03-24 09:20:57 +01:00
parent 160dd060ea
commit ef752f5e3f
1 changed files with 4 additions and 0 deletions

View File

@ -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