19 lines
423 B
YAML
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: {}
|