Files
neural-hunt/docker-compose.yml
jbergner 005fd6ca51
Some checks failed
release-tag / release-image (push) Failing after 1m18s
RC-1
2026-08-10 05:48:55 +02:00

19 lines
423 B
YAML

services:
app:
build: .
env_file: .env
environment:
SQLITE_PATH: /data/neuralhunt.db
ARTIFACT_DIR: /data/artifacts
ports:
- "8080:8080"
# 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: {}