Guest User

Untitled

a guest
Oct 30th, 2017
110
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"
  2.  
  3. services:
  4. db:
  5. image: postgres:9.4
  6. deploy:
  7. replicas: 1
  8. volumes:
  9. - pgsql_data:/var/lib/postgresql/data:rw,Z
  10. environment:
  11. POSTGRES_USER: odoo
  12. POSTGRES_PASSWORD: odoopwd
  13. odoo:
  14. image: odoo:11.0
  15. deploy:
  16. replicas: 3
  17. volumes:
  18. - odoo_data:/var/lib/odoo:rw,Z
  19. environment:
  20. POSTGRES_USER: odoo
  21. POSTGRES_PASSWORD: odoopwd
  22. ports:
  23. - "8069"
  24.  
  25. volumes:
  26. pgsql_data:
  27. odoo_data:
Add Comment
Please, Sign In to add comment