diff --git a/comfy-flux/README.md b/comfy-flux/README.md new file mode 100644 index 0000000..b4982b1 --- /dev/null +++ b/comfy-flux/README.md @@ -0,0 +1,32 @@ +## `docker-compose.yml` + +```yaml +x-defaults: &defaults + restart: unless-stopped + stop_grace_period: 0s + deploy: + resources: + reservations: + devices: + - driver: nvidia + count: all + capabilities: [gpu] +services: + comfy: + image: yauk.tv/comfy + container_name: comfy + <<: *defaults + ports: + - 8188:8188 + volumes: + - /home/w/comfy:/app/output # CHANGE /home/w/comfy or DELETE this line + +``` + +## START & STOP +```sh +docker compose up -d # START server +# Browser link: http://localhost:8188 + +docker compose down # STOP server +``` \ No newline at end of file