chore(ollama-stack.yaml): update ollama image to a specific commit
chore(stable-diffusion.yaml): add stable-diffusion service with custom configuration
This commit is contained in:
parent
21344a8114
commit
5b9a76c4b9
|
@ -9,7 +9,7 @@ services:
|
|||
- ollama:/root/.ollama
|
||||
|
||||
open-webui:
|
||||
image: ghcr.io/open-webui/open-webui:main
|
||||
image: ghcr.io/open-webui/open-webui:git-cd92cf0
|
||||
ports:
|
||||
- 3000:8080
|
||||
volumes:
|
||||
|
|
|
@ -0,0 +1,17 @@
|
|||
version: '3.9'
|
||||
|
||||
services:
|
||||
sd:
|
||||
image: goolashe/automatic1111-sd-webui
|
||||
ports:
|
||||
- "${WEBUI_PORT:-7860}:7860"
|
||||
stop_signal: SIGKILL
|
||||
tty: true
|
||||
environment:
|
||||
- CLI_ARGS=--allow-code --medvram --xformers --enable-insecure-extension-access --api
|
||||
volumes:
|
||||
- sd-data:/data
|
||||
- sd-output:/output
|
||||
volumes:
|
||||
sd-data: {}
|
||||
sd-output: {}
|
Loading…
Reference in New Issue