NarratoAI/docker-compose.yml
2024-11-10 21:25:44 +08:00

19 lines
335 B
YAML

x-common: &common
build:
context: .
dockerfile: Dockerfile
image: linyq1/narratoai:latest
volumes:
- ./:/NarratoAI
environment:
- VPN_PROXY_URL=http://host.docker.internal:7890
restart: always
services:
webui:
<<: *common
container_name: webui
ports:
- "8501:8501"
command: ["webui"]