Using this portainer docker stack:
version: "3.2"
services:
stable-diffusion-webui:
image: universonic/stable-diffusion-webui:minimal
command: --enable-insecure-extension-access --no-half-vae --precision full
runtime: nvidia
restart: unless-stopped
ports:
- "8080:8080/tcp"
volumes:
- /volume1/docker/stable-diffusion-webui/inputs:/app/stable-diffusion-webui/inputs
- /volume1/docker/stable-diffusion-webui/textual_inversion_templates:/app/stable-diffusion-webui/textual_inversion_templates
- /volume1/docker/stable-diffusion-webui/embeddings:/app/stable-diffusion-webui/embeddings
- /volume1/docker/stable-diffusion-webui/extensions:/app/stable-diffusion-webui/extensions
- /volume1/docker/stable-diffusion-webui/models:/app/stable-diffusion-webui/models
- /volume1/docker/stable-diffusion-webui/localizations:/app/stable-diffusion-webui/localizations
- /volume1/docker/stable-diffusion-webui/outputs:/app/stable-diffusion-webui/outputs
cap_drop:
- ALL
cap_add:
- NET_BIND_SERVICE
deploy:
mode: global
placement:
constraints:
- "node.labels.iface != extern"
restart_policy:
condition: unless-stopped
resources:
reservations:
devices:
- driver: nvidia
capabilities: [gpu]
I am unable to load any checkpoints, and getting these errors in the container logs:
RuntimeError: Input type (float) and bias type (c10::Half) should be the same
Please help. Thanks.
Using this portainer docker stack:
I am unable to load any checkpoints, and getting these errors in the container logs:
Please help. Thanks.