mirror of https://github.com/bmaltais/kohya_ss
34 lines
780 B
YAML
34 lines
780 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
kohya-ss-gui:
|
|
container_name: kohya-ss-gui
|
|
image: kohya-ss-gui:latest
|
|
user: 1000:0
|
|
build:
|
|
context: .
|
|
args:
|
|
- UID=1000
|
|
ports:
|
|
- 7860:7860
|
|
- 6006:6006
|
|
environment:
|
|
SAFETENSORS_FAST_GPU: 1
|
|
tmpfs:
|
|
- /tmp
|
|
volumes:
|
|
- /tmp/.X11-unix:/tmp/.X11-unix
|
|
- ./dataset:/dataset
|
|
- ./.cache/user:/home/1000/.cache
|
|
- ./.cache/triton:/home/1000/.triton
|
|
- ./.cache/nv:/home/1000/.nv
|
|
- ./.cache/keras:/home/1000/.keras
|
|
- ./.cache/config:/home/1000/.config
|
|
deploy:
|
|
resources:
|
|
reservations:
|
|
devices:
|
|
- driver: nvidia
|
|
capabilities: [gpu]
|
|
device_ids: ['all']
|