Advertisement
uopspop

Untitled

Mar 29th, 2020
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. version: "3.7"
  2. services:
  3. myweb:
  4. build:
  5. context: ./app
  6. args:
  7. whoami: "Tony"
  8. image: uopsdod/myweb:latest
  9. ports:
  10. - "8080:80"
  11. myweb2:
  12. build:
  13. context: ./app
  14. args:
  15. whoami: "Chris"
  16. image: uopsdod/myweb2:latest
  17. ports:
  18. - "8081:80"
  19. myweb3:
  20. build:
  21. context: ./app
  22. args:
  23. whoami: "Jane"
  24. image: uopsdod/myweb3:latest
  25. ports:
  26. - "8082:80"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement