Files
neural-hunt/docker-compose.yml
jbergner 185ccf1101
All checks were successful
release-tag / release-image (push) Successful in 2m10s
RC-6
2026-08-10 19:44:17 +02:00

24 lines
655 B
YAML

services:
app:
build: .
env_file:
- path: .env
required: false
environment:
SQLITE_PATH: /data/neuralhunt.db
ARTIFACT_DIR: /data/artifacts
ports:
- "8080:8080"
# Admin is bound only to host loopback by default. A VPN/reverse proxy on
# the host can publish it privately; Docker-network proxies can use app:8081.
- "127.0.0.1:8081:8081"
# Lets the optional ComfyUI/A1111 providers reach a UI running on the Docker host.
extra_hosts:
- "host.docker.internal:host-gateway"
volumes:
- neuralhunt_data:/data
restart: unless-stopped
volumes:
neuralhunt_data: {}