15 lines
339 B
YAML
15 lines
339 B
YAML
|
version: '3.8'
|
||
|
|
||
|
services:
|
||
|
mvpost-package-no-finder:
|
||
|
image: git.shihaam.dev/shihaam/mvpost-package-no-finder
|
||
|
container_name: mvpost-package-no-finder
|
||
|
ports:
|
||
|
- "8501:8501"
|
||
|
volumes:
|
||
|
- .:/app
|
||
|
environment:
|
||
|
- STREAMLIT_SERVER_PORT=8501
|
||
|
- STREAMLIT_SERVER_ADDRESS=0.0.0.0
|
||
|
restart: unless-stopped
|