16 lines
329 B
YAML
16 lines
329 B
YAML
services:
|
|
comfykiosk:
|
|
build:
|
|
context: ..
|
|
dockerfile: ./docker/Dockerfile
|
|
command: ["python", "/app/sample-advanced.py"]
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- comfykiosk-output:/app/output
|
|
ports:
|
|
- "18000:8000"
|
|
|
|
volumes:
|
|
comfykiosk-output:
|