chatgpt-web/docker-compose.yml

27 lines
446 B
YAML
Raw Normal View History

2023-03-18 22:54:51 +09:00
version: "3"
services:
chatgpt_web:
container_name: chatgpt_web
restart: always
2023-03-24 17:20:57 +09:00
depends_on:
- mocked_api
2023-03-24 01:50:41 +09:00
env_file:
- .env
2023-03-18 22:54:51 +09:00
ports:
- 5173:5173
2023-03-24 17:20:57 +09:00
volumes:
- .:/app
2023-03-18 22:54:51 +09:00
build:
context: "."
dockerfile: Dockerfile
2023-03-24 01:50:41 +09:00
mocked_api:
container_name: mocked_api
build:
context: "."
dockerfile: mocked_api/Dockerfile-mockapi
restart: always
ports:
- 5174:5174