Advertisement
Guest User

Untitled

a guest
Apr 27th, 2017
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. ---
  2. version: "2"
  3. services:
  4. db:
  5. labels:
  6. io.rancher.sidekicks: db-data, db-utils
  7. environment:
  8. - POSTGRES_USER=odoo
  9. - POSTGRES_PASSWORD=odoo
  10. image: "postgres:9.6-alpine"
  11. tty: true
  12. volumes_from:
  13. - db-data
  14. db-data:
  15. labels:
  16. io.rancher.container.start_once: "true"
  17. image: "postgres:9.6-alpine"
  18. command: /bin/true
  19. db-utils:
  20. image: grupocitec/pgutils
  21. labels:
  22. io.rancher.container.start_once: "true"
  23. volumes:
  24. - "/tmp:/tmp"
  25. odoo:
  26. labels:
  27. io.rancher.sidekicks: odoo-data
  28. traefik.domain: laslabs.laslabs.io
  29. traefik.port: '8069'
  30. traefik.enable: 'true'
  31. image: "laslabs/alpine-odoo:10.0"
  32. depends_on:
  33. - db
  34. ports:
  35. - "8069"
  36. - "8071"
  37. tty: true
  38. volumes_from:
  39. - odoo-data
  40. odoo-data:
  41. labels:
  42. io.rancher.container.start_once: "true"
  43. image: "laslabs/alpine-odoo:10.0"
  44. command: /bin/true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement