NarratoAI/docker-compose.yml
2024-08-12 21:35:06 +08:00

27 lines
555 B
YAML

x-common-volumes: &common-volumes
- ./:/NarratoAI
services:
webui:
build:
context: .
dockerfile: Dockerfile
container_name: "webui"
ports:
- "8501:8501"
command: [ "bash", "webui.sh" ]
volumes: *common-volumes
environment:
- "VPN_PROXY_URL=http://host.docker.internal:7890"
restart: always
api:
build:
context: .
dockerfile: Dockerfile
container_name: "api"
ports:
- "8080:8080"
command: [ "python3", "main.py" ]
volumes: *common-volumes
restart: always