forked from Tecnativa/doodba-copier-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup-devel.yaml.jinja
44 lines (41 loc) · 1.15 KB
/
setup-devel.yaml.jinja
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
{% import "_macros.jinja" as macros -%}
# 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.4"
services:
odoo:
{%- if odoo_oci_image %}
image: {{ odoo_oci_image }}:{{ macros.version_minor(odoo_version) }}
{%- endif %}
build:
context: ./odoo
args:
AGGREGATE: "false"
DEPTH_DEFAULT: 100
ODOO_VERSION: "{{ macros.version_minor(odoo_version) }}"
PYTHONOPTIMIZE: ""
PIP_INSTALL_ODOO: "false"
CLEAN: "false"
COMPILE: "false"
UID: "${UID:-1000}"
GID: "${GID:-1000}"
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:-1000}"
GID: "${GID:-1000}"
UMASK: "$UMASK"
user: root
entrypoint: autoaggregate
networks:
public: