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:
Digital Studium 2024-03-17 13:41:15 +03:00
parent 21344a8114
commit 5b9a76c4b9
2 changed files with 18 additions and 1 deletions

View File

@ -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:

17
stable-diffusion.yaml Normal file
View File

@ -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: {}