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

https://github.com/ideonate/streamlit-docker

Docker images for streamlit-launchpad
https://github.com/ideonate/streamlit-docker

Last synced: 6 months ago
JSON representation

Docker images for streamlit-launchpad

Awesome Lists containing this project

README

          

# Docker images for Streamlit

Docker images for [Streamlit](https://streamlit.io/).

## ideonate/streamlit-launchpad

Uses [streamlit-launchpad](https://github.com/ideonate/streamlit-launchpad/) to display a list of any .py apps mounted in the /app folder.

```
docker run -p 8888:8888 -v ~/streamlit-examples:/app ideonate/streamlit-launchpad
```

## ideonate/streamlit-single

Runs the first .py script it finds in /app

```
docker run -p 8888:8888 -v ~/streamlit-examples:/app ideonate/streamlit-single
```

## ideonate/streamlit-base

Runs the script provided as a parameter

```
docker run -p 8888:8888 -v ~/streamlit-examples:/app ideonate/streamlit-base ./intro.py
```