Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joshbuker/automatic1111-docker
A dockerized version of Automatic1111, for usage as a REST API to access Stable Diffusion locally or on a self-hosted system.
https://github.com/joshbuker/automatic1111-docker
Last synced: 9 days ago
JSON representation
A dockerized version of Automatic1111, for usage as a REST API to access Stable Diffusion locally or on a self-hosted system.
- Host: GitHub
- URL: https://github.com/joshbuker/automatic1111-docker
- Owner: joshbuker
- License: mit
- Created: 2024-06-06T18:34:38.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-06-17T06:42:35.000Z (5 months ago)
- Last Synced: 2024-06-18T03:47:18.369Z (5 months ago)
- Language: Dockerfile
- Homepage:
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# automatic1111-docker
A dockerized version of Automatic1111, for usage as a REST API to access Stable Diffusion locally or on a self-hosted system.
## Relevant Command Line Arguments
From: https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Command-Line-Arguments-and-Settings#all-command-line-arguments
- `--exit` Allows us to install then exit during build phase
- Model overrides
- `--ckpt-dir ` Checkpoints - Specific training checkpoints for Stable Diffusion
- `--vae-dir ` VAE - Allows for adjustments to Checkpoints
- `--lora-dir ` LoRA - Allows adding new data for specific things, like a character, art style, or pose
- `--embeddings-dir ` Embeddings - Similar to LoRAs, but has some nuances I don't fully understand yet
- `--port ` Allows overwriting the port
- `--api` Disables the web UI and runs purely in REST API mode
- `--api-auth ` Allows setting username/password auth
- For a single user, use `username:password`
- For multiple users, comma-delimit: `u1:p1,u2:p2,u3:p3`
- `--api-log` Allows enabling of API logging for all requests
- `--nowebui` Allows running headless (no webui)
- `--no-hashing` Skips SHA-256 hashing, which is slow and not super helpful, see [automatic1111#13577](https://github.com/AUTOMATIC1111/stable-diffusion-webui/discussions/13577)
- `--no-download-sd-model` Skips downloading the SD1.5 model, which takes a significant amount of disk space for a Docker image, and should be loaded by volume mounts anyway
- `--theme dark` Set dark theme (useful when running w/ webui to not flashbang your eyes)
- `--disable-console-progressbars` Disable the progress bars in console when generating images