scrub
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1 +1,2 @@
|
|||||||
.ipynb_checkpoints
|
.ipynb_checkpoints
|
||||||
|
__pycache__
|
||||||
19
comfy-flux/docker-compose.yml
Normal file
19
comfy-flux/docker-compose.yml
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
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:
|
||||||
|
- ./output:/app/output # CHANGE /home/w/comfy or DELETE this line
|
||||||
@@ -164,7 +164,3 @@ ign() {
|
|||||||
alias r="redis-cli"
|
alias r="redis-cli"
|
||||||
q() { "$@" > /dev/null 2>&1 & }
|
q() { "$@" > /dev/null 2>&1 & }
|
||||||
|
|
||||||
|
|
||||||
log() {
|
|
||||||
python -c "while log := __import__('redis').Redis().brpop('log'): print(log[1].decode())"
|
|
||||||
}
|
|
||||||
|
|||||||
Reference in New Issue
Block a user