Skip to content

Commit

Permalink
update to odoo 13
Browse files Browse the repository at this point in the history
  • Loading branch information
mamiu committed Oct 29, 2019
1 parent 09d035a commit 40ad766
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
addons/
.env
1 change: 1 addition & 0 deletions config/odoo.conf
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[options]
addons_path = /mnt/extra-addons,/usr/lib/python3/dist-packages/odoo/addons
data_dir = /var/lib/odoo
logfile = /etc/odoo/odoo-server.log
; admin_passwd = admin
; csv_internal_sep = ,
; db_maxconn = 64
Expand Down
7 changes: 4 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
version: '2'
version: "2"

services:
web:
image: odoo:11
image: odoo:13
depends_on:
- db
volumes:
Expand All @@ -17,10 +17,11 @@ services:
- internal

db:
image: postgres:9.4
image: postgres:12
environment:
- POSTGRES_PASSWORD=odoo
- POSTGRES_USER=odoo
- POSTGRES_DB=postgres
- PGDATA=/var/lib/postgresql/data/pgdata
volumes:
- odoo-db-data:/var/lib/postgresql/data/pgdata
Expand Down

0 comments on commit 40ad766

Please sign in to comment.