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

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

Docker compose file for streamlit deploy
https://github.com/marktheo/streamlit-docker

docker docker-compose docker-image python streamlit

Last synced: 3 months ago
JSON representation

Docker compose file for streamlit deploy

Awesome Lists containing this project

README

          

# Streamlit deploy guide for Docker

**Build streamlit docker image**
```
docker build . -t python:streamlit
```


**Create the container volume before running docker compose**
```
docker volume create streamlit-data
```


**Deploy streamlit docker container**
```
docker compose up -d
```