Running this on TrueNAS Scale 24.10 #751
Unanswered
VagueDustin
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hey there you awesome incredible developers. I'm trying to be (assumedly) the first person to get this running on the new version of TrueNAS scale that has Docker Compose built in. I've ChatGPT'd as much as I possibly can, but am unable to get this to run. It may simply be impossible on this platform but I feel like I'm so close. If anyone wants to take a crack at this it could be pretty fun.
As the TrueNAS Scale UI doesn't allow for docker commands directly, everything has to be done through the compose. Below is what I'm working with. The download portion works great and it seems like everything is building and working correctly from hostpaths rather than this github but when it finally comes time to launch the "auto" container it crashes immediately with very little logging available (TrueNAS Scale doesn't give you docker commands from the shell)
name: webui-docker
services:
auto:
build: >-
/mnt/ssd-e5/e5-share/app-configs/stable-diffusion-webui-docker/services/AUTOMATIC1111
deploy:
resources:
reservations:
devices:
- capabilities:
- compute
- utility
device_ids:
- '0'
driver: nvidia
environment:
- >-
CLI_ARGS=--allow-code --medvram --xformers
--enable-insecure-extension-access --api
image: sd-auto:78
ports:
- ${WEBUI_PORT:-7860}:7860
stop_signal: SIGKILL
tty: True
volumes:
- >-
/mnt/ssd-e5/e5-share/app-configs/stable-diffusion-webui-docker/data:/data
- >-
/mnt/ssd-e5/e5-share/app-configs/stable-diffusion-webui-docker/output:/output
download:
build: >-
/mnt/ssd-e5/e5-share/app-configs/stable-diffusion-webui-docker/services/download/
volumes:
- >-
/mnt/ssd-e5/e5-share/app-configs/stable-diffusion-webui-docker/data:/data
x-base_service:
deploy:
resources:
reservations:
devices:
- capabilities:
- compute
- utility
device_ids:
- '0'
driver: nvidia
ports:
- ${WEBUI_PORT:-7860}:7860
stop_signal: SIGKILL
tty: True
volumes:
- /mnt/ssd-e5/e5-share/app-configs/stable-diffusion-webui-docker/data:/data
- >-
/mnt/ssd-e5/e5-share/app-configs/stable-diffusion-webui-docker/output:/output
Beta Was this translation helpful? Give feedback.
All reactions