https://github.com/xei/streamlit-apps
A production-ready Streamlit setup for hosting multiple web apps on Docker.
https://github.com/xei/streamlit-apps
Last synced: 5 months ago
JSON representation
A production-ready Streamlit setup for hosting multiple web apps on Docker.
- Host: GitHub
- URL: https://github.com/xei/streamlit-apps
- Owner: xei
- Created: 2023-06-25T12:17:01.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-06-25T12:28:56.000Z (almost 3 years ago)
- Last Synced: 2025-04-04T13:16:26.873Z (about 1 year ago)
- Language: Dockerfile
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# streamlit-apps
This repository contains the source code of all web apps written in streamlit.io
## Run an app (here hello-world) using Docker
```bash
docker build -t hello-world:latest -f Dockerfile hello-world/
docker run -d --restart=unless-stopped -p 8501:8501 hello-world:latest
```