Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. version: '3.7'
  2.  
  3. services:
  4. app:
  5. image: react:3.0.1
  6. container_name: react
  7. working_dir: /app
  8. build: .
  9. command: npm start
  10. volumes:
  11. - .:/app
  12. - /app/node_modules
  13. environment:
  14. NODE_ENV: development
  15. ports:
  16. - 3000:3000
  17. - 9229:9229
  18. stdin_open: true
  19. tty: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement