bracken_streamlit / docker-compose.yml
hathawayj's picture
first push
59a2d05
raw
history blame contribute delete
230 Bytes
version: '3.9'
services:
streamlit:
build:
dockerfile: Dockerfile
context: .
container_name: streamlit-example
cpus: 2
mem_limit: 2048m
ports:
- "8501:8501"
volumes:
- ".:/app:rw"