You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

docker-compose.yml 513B

12345678910111213141516171819202122232425
  1. version: "3.8"
  2. services:
  3. excalidraw:
  4. build:
  5. context: .
  6. args:
  7. - NODE_ENV=development
  8. container_name: excalidraw
  9. ports:
  10. - "3000:80"
  11. restart: on-failure
  12. stdin_open: true
  13. healthcheck:
  14. disable: true
  15. environment:
  16. - NODE_ENV=development
  17. volumes:
  18. - ./:/opt/node_app/app:delegated
  19. - ./package.json:/opt/node_app/package.json
  20. - ./yarn.lock:/opt/node_app/yarn.lock
  21. - notused:/opt/node_app/app/node_modules
  22. volumes:
  23. notused: