Guest User

Untitled

a guest
Mar 22nd, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. version: '3'
  2. services:
  3. web:
  4. build:
  5. context: server
  6. dockerfile: Dockerfile-dev
  7. command: npm start # expecting bind port to 3000
  8. ...
  9. lt:
  10. build:
  11. context: lt # folder you created earlier with the Dockefile-lt inside
  12. dockerfile: Dockerfile-lt
  13. command: "usr/local/bin/lt --port 3000 --local-host web
  14. depends_on:
  15. - web
Add Comment
Please, Sign In to add comment