mirror of
https://github.com/AbdBarho/stable-diffusion-webui-docker.git
synced 2026-04-05 22:45:39 +00:00
Add AUTOMATIC1111 and lstein UIs
This commit is contained in:
parent
79937dd3f4
commit
791df3a307
14 changed files with 157 additions and 30 deletions
14
lstein/README.md
Normal file
14
lstein/README.md
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
# WebUI for lstein
|
||||
|
||||
The WebUI of [lstein/stable-diffusion](https://github.com/lstein/stable-diffusion) as docker container!
|
||||
|
||||
Although it is a simple UI, the project has a lot of potential.
|
||||
|
||||
## Setup
|
||||
|
||||
Clone this repo, download the `model.ckpt` and put into the `models` folder as mentioned in [the main README](../README.md), then run
|
||||
|
||||
```
|
||||
cd lstein
|
||||
docker compose up --build
|
||||
```
|
||||
21
lstein/docker-compose.yml
Normal file
21
lstein/docker-compose.yml
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
version: '3.9'
|
||||
|
||||
services:
|
||||
model:
|
||||
build: .
|
||||
restart: on-failure
|
||||
ports:
|
||||
- "7860:7860"
|
||||
volumes:
|
||||
- ../cache:/cache
|
||||
- ../output:/output
|
||||
- ../models:/models
|
||||
environment:
|
||||
- CLI_ARGS=
|
||||
deploy:
|
||||
resources:
|
||||
reservations:
|
||||
devices:
|
||||
- driver: nvidia
|
||||
device_ids: ['0']
|
||||
capabilities: [gpu]
|
||||
Loading…
Add table
Add a link
Reference in a new issue