Advertisement
gomezgleonardob

Untitled

Nov 9th, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. version: '2'
  2. services:
  3. odoo:
  4. image: odoo:10
  5. restart: always
  6. ports:
  7. - "8069:8069"
  8. links:
  9. - db
  10. volumes:
  11. - ./extra-addons:/mnt/extra-addons
  12. db:
  13. image: postgres:9.6
  14. restart: always
  15. environment:
  16. - POSTGRES_USER=odoo
  17. - POSTGRES_PASSWORD=odoo
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement