{"id":25764331,"url":"https://github.com/rylorin/streamlit-docker","last_synced_at":"2026-02-12T02:08:50.002Z","repository":{"id":277591161,"uuid":"932908100","full_name":"rylorin/streamlit-docker","owner":"rylorin","description":"A Docker container to run Streamlit applications from a GitHub repository","archived":false,"fork":false,"pushed_at":"2025-02-26T08:21:18.000Z","size":31,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-02T15:44:07.410Z","etag":null,"topics":["docker","python","streamlit"],"latest_commit_sha":null,"homepage":"","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/rylorin.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-02-14T18:38:16.000Z","updated_at":"2025-02-26T08:21:22.000Z","dependencies_parsed_at":"2025-02-14T19:37:48.807Z","dependency_job_id":"57f58fe5-c3d4-4ff9-9708-dbb433c58bc7","html_url":"https://github.com/rylorin/streamlit-docker","commit_stats":null,"previous_names":["rylorin/streamlit-docker"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/rylorin/streamlit-docker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rylorin%2Fstreamlit-docker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rylorin%2Fstreamlit-docker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rylorin%2Fstreamlit-docker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rylorin%2Fstreamlit-docker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rylorin","download_url":"https://codeload.github.com/rylorin/streamlit-docker/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rylorin%2Fstreamlit-docker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29354699,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-12T01:03:07.613Z","status":"online","status_checked_at":"2026-02-12T02:00:06.911Z","response_time":55,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["docker","python","streamlit"],"created_at":"2025-02-26T21:17:47.759Z","updated_at":"2026-02-12T02:08:49.977Z","avatar_url":"https://github.com/rylorin.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# streamlit-docker\n\n![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/rylorin/streamlit-docker/deploy-dockerhub.yml)\n![License MIT](https://img.shields.io/badge/License-MIT-blue.svg)\n![Docker Pulls](https://img.shields.io/docker/pulls/rylorin/streamlit-docker.svg)\n\nThis repository contains a Docker container to run Streamlit applications from a GitHub repository or a local volume.\n\n## 📌 Prerequisites\n\nBefore getting started, make sure you have the following installed on your machine:\n\n- [Docker](https://www.docker.com/get-started)\n\n## 🚀 Installation \u0026 Usage\n\n1. **Download the image**\n\n   ```sh\n   docker pull rylorin/streamlit-docker\n   ```\n\n2. **Run the container**\n\n   ```sh\n   docker run -p 8501:8501 rylorin/streamlit-docker\n   ```\n\n3. **Access the application**\n\n   - Open a browser and go to [http://localhost:8501](http://localhost:8501)\n\n## ⚙️ Customization\n\nThe `GIT_URL` variable specifies the Git repository URL containing the Streamlit application to be executed. By default, it is set to `https://github.com/streamlit/streamlit-example.git`.\n\nYou can change it by specifying another URL:\n\n```sh\nexport GIT_URL=\"https://github.com/your-user/your-repository.git\"\ndocker run -p 8501:8501 --env GIT_URL=\"${GIT_URL}\" rylorin/streamlit-docker\n```\n\nOr you can and mount your own script or volume to run a local application:\n\n```sh\ndocker run -p 8501:8501 -v $(pwd)/my_app:/app/streamlit_app/ rylorin/streamlit-docker\n```\n\n## 🛠 Development \u0026 Debugging\n\n- To view real-time logs:\n  ```sh\n  docker logs -f \u003ccontainer_id\u003e\n  ```\n- To enter the container:\n  ```sh\n  docker exec -it \u003ccontainer_id\u003e /bin/sh\n  ```\n\n## 📌 Deployment Example\n\n### 🌍 Environment Variable `GIT_URL`\n\nThe `GIT_URL` variable specifies the Git repository URL containing the Streamlit application to be executed and can be set directly in `docker-compose.yml`:\n\n```yaml\nenvironment:\n  GIT_URL: https://github.com/your-user/your-repository.git\n```\n\nExample `docker-compose.yml` configuration to deploy the application with Docker Compose:\n\n```yaml\nversion: \"3.8\"\nservices:\n  streamlit:\n    image: rylorin/streamlit-docker:latest\n    ports:\n    - 8501:8501/tcp\n    environment:\n      GIT_URL: ${GIT_URL:-https://github.com/streamlit/streamlit-example.git}\n    networks:\n      - default\n      - system_dmz_network\n\nnetworks:\n  default:\n  system_dmz_network:\n    external: true\n```\n\n## 📜 License\n\nThis project is licensed under the MIT License. See the `LICENSE` file for details.\n\n## ✨ Contributions\n\nContributions are welcome! Please submit a *pull request* to\n[rylorin/streamlit-docker](https://github.com/rylorin/streamlit-docker)\nGitHub repository with your improvements.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frylorin%2Fstreamlit-docker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frylorin%2Fstreamlit-docker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frylorin%2Fstreamlit-docker/lists"}