docker-compose.yml 469 B

123456789101112131415161718192021222324
  1. version: "3.9"
  2. services:
  3. backend:
  4. container_name: embedchain-backend
  5. restart: unless-stopped
  6. build:
  7. context: backend
  8. dockerfile: Dockerfile
  9. image: embedchain/backend
  10. ports:
  11. - "8000:8000"
  12. frontend:
  13. container_name: embedchain-frontend
  14. restart: unless-stopped
  15. build:
  16. context: frontend
  17. dockerfile: Dockerfile
  18. image: embedchain/frontend
  19. ports:
  20. - "3000:3000"
  21. depends_on:
  22. - "backend"