| 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 |