├── .dockerignore ├── .editorconfig ├── .gitattributes ├── .github └── workflows │ ├── build-push-auto.yml │ └── build-push-kohya.yml ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── browser ├── Dockerfile ├── config.json └── entrypoint.sh ├── data └── .gitignore ├── docker-bake.hcl ├── docker-compose.override.example.yml ├── docker-compose.yml ├── docker ├── Dockerfile.auto ├── Dockerfile.base ├── config.json ├── cuda-repo-pin └── entrypoint.sh ├── kohya ├── Dockerfile.kohya ├── docker-compose.kohya.override.example.yml ├── docker-compose.kohya.yml └── entrypoint_kohya.sh ├── misc └── .gitignore ├── output └── .gitignore └── sdctl /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neggles/sd-webui-docker/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neggles/sd-webui-docker/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neggles/sd-webui-docker/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build-push-auto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neggles/sd-webui-docker/HEAD/.github/workflows/build-push-auto.yml -------------------------------------------------------------------------------- /.github/workflows/build-push-kohya.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neggles/sd-webui-docker/HEAD/.github/workflows/build-push-kohya.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neggles/sd-webui-docker/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neggles/sd-webui-docker/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neggles/sd-webui-docker/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neggles/sd-webui-docker/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neggles/sd-webui-docker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neggles/sd-webui-docker/HEAD/README.md -------------------------------------------------------------------------------- /browser/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neggles/sd-webui-docker/HEAD/browser/Dockerfile -------------------------------------------------------------------------------- /browser/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neggles/sd-webui-docker/HEAD/browser/config.json -------------------------------------------------------------------------------- /browser/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neggles/sd-webui-docker/HEAD/browser/entrypoint.sh -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /docker-bake.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neggles/sd-webui-docker/HEAD/docker-bake.hcl -------------------------------------------------------------------------------- /docker-compose.override.example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neggles/sd-webui-docker/HEAD/docker-compose.override.example.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neggles/sd-webui-docker/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/Dockerfile.auto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neggles/sd-webui-docker/HEAD/docker/Dockerfile.auto -------------------------------------------------------------------------------- /docker/Dockerfile.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neggles/sd-webui-docker/HEAD/docker/Dockerfile.base -------------------------------------------------------------------------------- /docker/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neggles/sd-webui-docker/HEAD/docker/config.json -------------------------------------------------------------------------------- /docker/cuda-repo-pin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neggles/sd-webui-docker/HEAD/docker/cuda-repo-pin -------------------------------------------------------------------------------- /docker/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neggles/sd-webui-docker/HEAD/docker/entrypoint.sh -------------------------------------------------------------------------------- /kohya/Dockerfile.kohya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neggles/sd-webui-docker/HEAD/kohya/Dockerfile.kohya -------------------------------------------------------------------------------- /kohya/docker-compose.kohya.override.example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neggles/sd-webui-docker/HEAD/kohya/docker-compose.kohya.override.example.yml -------------------------------------------------------------------------------- /kohya/docker-compose.kohya.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neggles/sd-webui-docker/HEAD/kohya/docker-compose.kohya.yml -------------------------------------------------------------------------------- /kohya/entrypoint_kohya.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neggles/sd-webui-docker/HEAD/kohya/entrypoint_kohya.sh -------------------------------------------------------------------------------- /misc/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /output/.gitignore: -------------------------------------------------------------------------------- 1 | /* 2 | !/.gitignore -------------------------------------------------------------------------------- /sdctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neggles/sd-webui-docker/HEAD/sdctl --------------------------------------------------------------------------------