Advertisement
uopspop

Untitled

Mar 29th, 2020
289
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 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. ports:
  17. - "8081:80"
  18. myweb3:
  19. build:
  20. context: ./app
  21. args:
  22. whoami: "Jane"
  23. ports:
  24. - "8082:80"
  25. myweb4:
  26. image: uopsdod/myweb:latest
  27. ports:
  28. - "8084:80"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement