mirror of
https://github.com/linyqh/NarratoAI.git
synced 2025-12-11 10:32:49 +00:00
19 lines
335 B
YAML
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"]
|