{"id":23105137,"url":"https://github.com/albarji/sd-webui-docker","last_synced_at":"2026-03-20T00:36:58.913Z","repository":{"id":206799300,"uuid":"717726356","full_name":"albarji/sd-webui-docker","owner":"albarji","description":"A dockerized version of the Stable Diffusion UI, including some models I like to use","archived":false,"fork":false,"pushed_at":"2024-10-27T15:51:15.000Z","size":1743,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-10T18:07:45.973Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/albarji.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-11-12T11:54:00.000Z","updated_at":"2024-10-27T15:51:19.000Z","dependencies_parsed_at":"2023-12-02T21:26:40.338Z","dependency_job_id":"31f30860-a5ce-4711-ad56-0036b54f983a","html_url":"https://github.com/albarji/sd-webui-docker","commit_stats":null,"previous_names":["albarji/sd-webui-docker"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/albarji/sd-webui-docker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/albarji%2Fsd-webui-docker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/albarji%2Fsd-webui-docker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/albarji%2Fsd-webui-docker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/albarji%2Fsd-webui-docker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/albarji","download_url":"https://codeload.github.com/albarji/sd-webui-docker/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/albarji%2Fsd-webui-docker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29627701,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-19T18:02:07.722Z","status":"ssl_error","status_checked_at":"2026-02-19T18:01:46.144Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-17T00:38:32.170Z","updated_at":"2026-02-19T19:02:45.316Z","avatar_url":"https://github.com/albarji.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Stable Diffusion WebUI Docker server\n\n\u003cdiv align=\"center\"\u003e\n    \u003cimg src=\"docs/logo.png\" width=\"1024\"\u003e\u003cbr\u003e\n\u003c/div\u003e\n\nA dockerized version of the [Stable Diffusion web UI by AUTOMATIC1111](https://github.com/AUTOMATIC1111/stable-diffusion-webui), including some models that show its potential.\n\n## Usage\n\nPrerequisites:\n* A machine with GPU\n* [Docker](https://www.docker.com/)\n* [NVIDIA Container Toolkit](https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/latest/install-guide.html)\n\nThen run the following\n\n`docker run --gpus all --rm -p 7860:7860 albarji/sd-webui`\n\nand you will be able to access the Stable Diffusion web UI through a browser at the address `YOUR_MACHINE_IP_ADDRESS:7860`.\n\nNote the server will accept connections from any IP.\n\n## Deploying in AWS\n\nIf you want to launch this server in [Amazon Web Services](https://aws.amazon.com), do as follows. But bear in mind that you will need to pay AWS for the instances you create!\n\n### Prerequisites\n\n1. Create a security group with the following permissions\n   * Inbound access, HTTP, TCP, port 80, source 0.0.0.0/0 (allow HTTP conections to server).\n   * (optional) Inbound access, SSH, TCP, port 22, source 0.0.0.0/0 (allow SSH connection for debugging or installing additional models).\n   * Outbound access, all traffic, all protocols, all ports, 0.0.0.0/0 (allow all access to the internet).\n\nYou can further restrict the origin IP addresses if you want tighter access control. By default anybody on the internet could access your server!\n\n2. Install [AWS CLI](https://aws.amazon.com/cli/) in your machine, configured with your AWS user. Alternatively, use [AWS Cloudshell](https://docs.aws.amazon.com/cloudshell/latest/userguide/welcome.html).\n\n3. Your AWS user must have full EC2 permissions.\n\n4. (Optional) Create an access key. Only necessary if you want to access the server through SSH.\n\n### Deployment\n\n1. Clone this project into your machine our your AWS Cloudhsell terminal.\n2. Access the `aws` subfolder.\n3. Configure the `launch.sh` script with the name of the security group and the access key you created in the prerequisites step.\n4. Run `launch.sh` to deploy the server. It should be accesible on port `80` after a few minutes.\n\n### Troubleshooting\n\nIf you cannot connect to the deployed server, try accessing through SSH to check the status of the setup procedure:\n\n1. Connect to you instance: `ssh -i \"{YOUR_PEM_FILE}\" ec2-user@{MACHINE_PUBLIC_DNS}`\n2. Check the logs with `sudo tail -f /var/log/cloud-init-output.log`\n\n### Tear down\n\nDon't forget to terminate all the instances you have created once you have finished using them. You can do this in the AWS EC2 dashboard. None of us want you get bankrupt on AWS bills.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falbarji%2Fsd-webui-docker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falbarji%2Fsd-webui-docker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falbarji%2Fsd-webui-docker/lists"}