docker-compose.yml 260 B

123456789101112131415
  1. version: "3.9"
  2. services:
  3. backend:
  4. container_name: embedchain_api
  5. restart: unless-stopped
  6. build:
  7. context: .
  8. dockerfile: Dockerfile
  9. env_file:
  10. - variables.env
  11. ports:
  12. - "5000:5000"
  13. volumes:
  14. - .:/usr/src/api