Advertisement
Guest User

Untitled

a guest
Jan 10th, 2017
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. odoo:
  2. labels:
  3. io.rancher.scheduler.affinity:host_label: dns2xtremxpert=true
  4. io.rancher.sidekicks: db, db-data, odoo-data, db-utils
  5. image: odoo:9.0
  6. tty: true
  7. links:
  8. - db
  9. ports:
  10. - 8069:8069/tcp
  11. - 8071:8071/tcp
  12. volumes_from:
  13. - odoo-data
  14. odoo-data:
  15. labels:
  16. io.rancher.container.start_once: true
  17. image: odoo:9.0
  18. net: none
  19. command: /bin/true
  20. db:
  21. image: postgres:latest
  22. tty : true
  23. environment:
  24. - POSTGRES_USER=odoo
  25. - POSTGRES_PASSWORD=odoo
  26. volumes_from:
  27. - db-data
  28. db-data:
  29. labels:
  30. io.rancher.container.start_once: true
  31. image: postgres:latest
  32. net: none
  33. command: /bin/true
  34. db-utils:
  35. labels:
  36. io.rancher.container.start_once: true
  37. image: grupocitec/pgutils
  38. links:
  39. - db
  40. volumes:
  41. - /tmp:/tmp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement