forked from oscars8a/doodba-scaffolding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup-devel.yaml
39 lines (36 loc) · 1.06 KB
/
setup-devel.yaml
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
# Use this environment to download all repositories from `repos.yaml` file:
#
# export UID="$(id -u $USER)" GID="$(id -g $USER)" UMASK="$(umask)"
# docker-compose -f setup-devel.yaml run --rm odoo
#
# You can clean your git project before if you want to have all really clean:
#
# git clean -ffd
version: "2.1"
services:
odoo:
image: $ODOO_IMAGE:$ODOO_MINOR
build:
context: ./odoo
args:
AGGREGATE: "false"
DEPTH_DEFAULT: 100
ODOO_VERSION: $ODOO_MINOR
PYTHONOPTIMIZE: ""
PIP_INSTALL_ODOO: "false"
CLEAN: "false"
COMPILE: "false"
networks:
- public
volumes:
- ./odoo/custom/src:/opt/odoo/custom/src:rw,z
environment:
DEPTH_DEFAULT: 100
# XXX Export these variables before running setup to own the files
UID: "$UID"
GID: "$GID"
UMASK: "$UMASK"
user: root
entrypoint: autoaggregate
networks:
public: