docker-compose.yaml 400 B

12345678910111213
  1. services:
  2. contract-deployer:
  3. build:
  4. context: ../../ # Build context is set to the root of the monorepo
  5. dockerfile: apps/contract-deployer/Dockerfile
  6. ports:
  7. - "8501:8501"
  8. volumes:
  9. - ../../:/app # Mount the entire monorepo. TODO: pull from GH
  10. environment:
  11. - STREAMLIT_SERVER_PORT=8501
  12. - STREAMLIT_SERVER_ADDRESS=0.0.0.0
  13. restart: unless-stopped