docker-compose.yml 342 B

12345678910
  1. services:
  2. flask-app:
  3. build: .
  4. ports:
  5. - "8080:8080" # Map port 8080 of the container to 8080 of the host
  6. volumes:
  7. - ./theta_rho_files:/app/theta_rho_files # Map host folder to container folder
  8. environment:
  9. - FLASK_ENV=development # Set environment variables for Flask
  10. container_name: flask-theta-rho-app