This commit is contained in:
18
docker-compose.yml
Normal file
18
docker-compose.yml
Normal 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: {}
|
||||
Reference in New Issue
Block a user