f76f8d4671
* Update Automatic to 1b963c20 * Update hlky to dev branch * Update automatic
27 lines
637 B
YAML
27 lines
637 B
YAML
version: '3.9'
|
|
|
|
services:
|
|
model:
|
|
build:
|
|
context: ./hlky/
|
|
args:
|
|
# You can choose any commit sha from https://github.com/hlky/stable-diffusion/commits/main
|
|
# USE AT YOUR OWN RISK! otherwise just leave it empty.
|
|
BRANCH:
|
|
WEBUI_SHA:
|
|
ports:
|
|
- "7860:7860"
|
|
volumes:
|
|
- ./cache:/cache
|
|
- ./output:/output
|
|
- ./models:/models
|
|
environment:
|
|
- CLI_ARGS=--extra-models-cpu --optimized-turbo
|
|
deploy:
|
|
resources:
|
|
reservations:
|
|
devices:
|
|
- driver: nvidia
|
|
device_ids: ['0']
|
|
capabilities: [gpu]
|