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
- Host: GitHub
- URL: https://github.com/marktheo/streamlit-docker
- Owner: marktheo
- Created: 2025-03-15T01:05:54.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-03-15T01:15:49.000Z (over 1 year ago)
- Last Synced: 2025-09-02T00:43:20.310Z (10 months ago)
- Topics: docker, docker-compose, docker-image, python, streamlit
- Language: Dockerfile
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```