Spaces:
Sleeping
Sleeping
File size: 230 Bytes
59a2d05 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
version: '3.9'
services:
streamlit:
build:
dockerfile: Dockerfile
context: .
container_name: streamlit-example
cpus: 2
mem_limit: 2048m
ports:
- "8501:8501"
volumes:
- ".:/app:rw"
|