Advertisement
Guest User

Untitled

a guest
Mar 30th, 2015
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. replicasetpart1:
  2. image: mongo:2.6.8
  3. expose:
  4. - '27018'
  5. links:
  6. - replicasetpart2
  7. - replicasetpart3
  8. cap_add:
  9. - NET_ADMIN
  10.  
  11. replicasetpart2:
  12. image: mongo:2.6.8
  13. links:
  14. - replicasetpart1
  15. - replicasetpart3
  16. expose:
  17. - '27019'
  18. cap_add:
  19. - NET_ADMIN
  20. ...
  21.  
  22. ambassador:
  23. image: cpuguy83/docker-grand-ambassador
  24. volumes:
  25. - "/var/run/docker.sock:/var/run/docker.sock"
  26. command: "-name eureka_1 -name eureka2_1 "
  27.  
  28. eureka:
  29. links:
  30. - "ambassador:eureka2"
  31.  
  32. eureka2:
  33. links:
  34. - "ambassador:eureka"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement