File size: 393 Bytes
9c71cd3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | version: '3.8'
services:
veritas-dashboard:
build: .
container_name: veritas-scada-sim
ports:
- "8501:8501"
volumes:
# This allows you to edit the code on your laptop and see changes live
# without rebuilding the container.
- .:/app
environment:
- STREAMLIT_SERVER_HEADLESS=true
- STREAMLIT_SERVER_ENABLECORS=false
restart: always |