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.
 
 

18 lines
295 B

  1. version: "3"
  2. services:
  3. node:
  4. build:
  5. context: ./
  6. dockerfile: Dockerfile.development
  7. container_name: nome-do-projeto
  8. tty: true
  9. volumes:
  10. - ./:/app
  11. ports:
  12. - "3333:3333"
  13. networks:
  14. - nome-do-projeto
  15. networks:
  16. nome-do-projeto:
  17. driver: bridge