RC-1
Some checks failed
release-tag / release-image (push) Failing after 1m18s

This commit is contained in:
2026-08-10 05:48:55 +02:00
parent 4f0ac14c49
commit 005fd6ca51
52 changed files with 9020 additions and 1 deletions

18
docker-compose.yml Normal file
View File

@@ -0,0 +1,18 @@
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: {}