Commit 44b469c8 by Ivan

Odoo10 , version convoy ajustando el orden de arranque de contenedores

parent d7679392
Showing with 9 additions and 3 deletions
...@@ -11,7 +11,6 @@ volumes: ...@@ -11,7 +11,6 @@ volumes:
driver: convoy driver: convoy
services: services:
db-data: db-data:
image: postgres:9.4 image: postgres:9.4
environment: environment:
...@@ -45,6 +44,10 @@ services: ...@@ -45,6 +44,10 @@ services:
- odoo-datadir:/var/lib/odoo - odoo-datadir:/var/lib/odoo
- odoo-extra-addons:/mnt/extra-addons - odoo-extra-addons:/mnt/extra-addons
- odoo-tools:/usr/lib/python2.7/dist-packages/odoo - odoo-tools:/usr/lib/python2.7/dist-packages/odoo
links:
- db:db
depends_on:
- db
web: web:
image: odoo:10 image: odoo:10
...@@ -62,6 +65,7 @@ services: ...@@ -62,6 +65,7 @@ services:
- volume-clener:volume-clener - volume-clener:volume-clener
- db:db - db:db
depends_on: depends_on:
- db
- volume-clener - volume-clener
labels: labels:
io.rancher.sidekicks: script io.rancher.sidekicks: script
...@@ -84,5 +88,7 @@ services: ...@@ -84,5 +88,7 @@ services:
- odoo-extra-addons:/home/odoo/upload - odoo-extra-addons:/home/odoo/upload
command: command:
- odoo:${sftp_pass}:104::upload - odoo:${sftp_pass}:104::upload
links:
- web:web
depends_on: depends_on:
- web - web
\ No newline at end of file \ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment