forked from camptocamp/docker-odoo-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
51 lines (46 loc) · 1.14 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Composition for development
version: '2'
services:
odoo:
tty: true
stdin_open: true
build: ./odoo/
ports:
- 8069
depends_on:
- db
volumes:
- "data-odoo:/data/odoo"
- "data-odoo-pytest-cache:/odoo/.cache"
# to speed build of image customise your .dockerignore (this is an help there)
- "./odoo:/odoo"
environment:
- DB_USER=odoo
- DB_PASS=odoo
- DB_NAME=odoodb
- ADMIN_PASSWD=# set me
- RUNNING_ENV=dev
- LOG_HANDLER=:WARN
- MARABUNTA_MODE=demo # could be 'full' for the db with all the data
- MARABUNTA_ALLOW_SERIE=True # should not be set in production
db:
image: postgres:9.6
ports:
- 5432
environment:
- POSTGRES_USER=odoo
- POSTGRES_PASSWORD=odoo
volumes:
- "data-db:/var/lib/postgresql/data"
# can be useful for dev when longpolling is required
nginx:
image: camptocamp/odoo-nginx:11.0-1.3.0
ports:
- 80:80
depends_on:
- odoo
volumes:
data-odoo:
data-db:
# store pytest cache, allowing to use --lf or --ff (replay last or first failures)
data-odoo-pytest-cache: