-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathadempiere.yml
executable file
·43 lines (43 loc) · 2.19 KB
/
adempiere.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
# Copyright (C) 2010-2017, OpenUp S.A. , http://www.openup.com.uy
# Copyright (C) 2003-2017, e-Evolution Consultants S.A. , http://www.e-evolution.com
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# Email: [email protected], http://openupsolutions.com , http://github.com/rcapecce
# Email: [email protected], http://www.e-evolution.com , http://github.com/e-Evolution
version: '3.5'
services:
adempiere-tenant:
networks:
- custom
external_links:
- db:db
image: "${COMPOSE_PROJECT_NAME}" # Name of the instance for docker create based on project name
container_name: "${COMPOSE_PROJECT_NAME}" # Name of the ADempiere client container
ports:
- ${ADEMPIERE_WEB_PORT}:8888 # http port where the web client will be exposed
- ${ADEMPIERE_SSL_PORT}:4444 # https port where the web client will be exposed
environment:
ADEMPIERE_DB_INIT: ${ADEMPIERE_DB_INIT} # ATENTION If is "Y" it will be replace de actual defined database with a empty ADempiere seed
build:
context: .
dockerfile: ./adempiere-last/Dockerfile
args:
ADEMPIERE_BINARY : ${ADEMPIERE_BINARY}
ADEMPIERE_SRC_DIR: "./${COMPOSE_PROJECT_NAME}" # Directory that contain the ADempiere installer, customization and localization
ADEMPIERE_DB_HOST: "${ADEMPIERE_DB_SERVER}"
ADEMPIERE_DB_PORT: 5432
ADEMPIERE_DB_NAME: "${COMPOSE_PROJECT_NAME}"
ADEMPIERE_DB_USER: "${COMPOSE_PROJECT_NAME}"
ADEMPIERE_DB_PASSWORD: ${ADEMPIERE_DB_PASSWORD}
ADEMPIERE_DB_ADMIN_PASSWORD: ${ADEMPIERE_DB_ADMIN_PASSWORD}
networks:
custom:
external: true