An open API service indexing awesome lists of open source software.

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.

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
```