File tree Expand file tree Collapse file tree 4 files changed +41
-43
lines changed Expand file tree Collapse file tree 4 files changed +41
-43
lines changed Original file line number Diff line number Diff line change
1
+ # #
2
+ # The following are environment variable defaults.
3
+ # They can be overridden on the commandline
4
+ # #
5
+
6
+ # Change these to alter the build version
7
+ # Options are
8
+ # 1. a tagged release e.g. 4.10.0
9
+ # 2. a branch e.g. main or develop
10
+ # 3. a git commit hash
11
+ MDM_APPLICATION_COMMIT = 4.10.0
12
+ MDM_UI_COMMIT = 6.6.0
13
+
14
+ # Change this to alter the port MDM is published to
15
+ MDM_PORT = 8082
16
+
17
+ # Change this to change the tag assigned to the built docker mdm image
18
+ MDM_TAG = B${ MDM_APPLICATION_COMMIT } _F${ MDM_UI_COMMIT }
Original file line number Diff line number Diff line change
1
+ ##
2
+ # The following are environment variable defaults.
3
+ # They can be overridden on the commandline
4
+ ##
5
+
6
+ # Change these to alter the build version
7
+ # Options are
8
+ # 1. a tagged release e.g. 4.10.0
9
+ # 2. a branch e.g. main or develop
10
+ # 3. a git commit hash
11
+ MDM_APPLICATION_COMMIT=develop
12
+ MDM_UI_COMMIT=develop
13
+
14
+ # Change this to alter the port MDM is published to
15
+ MDM_PORT=9000
16
+
17
+ # Change this to change the tag assigned to the built docker mdm image
18
+ MDM_TAG=continuous-development
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
version : ' 3.8'
2
2
services :
3
3
postgres :
4
+ image : " maurodatamapper/postgres:12.0-alpine"
4
5
build : ./postgres
5
6
shm_size : 512mb
6
7
environment :
@@ -9,19 +10,19 @@ services:
9
10
- postgres12:/var/lib/postgresql/data
10
11
restart : on-failure
11
12
mauro-data-mapper :
12
- image : ' maurodatamapper/mauro-data-mapper:B4.10.0_F6.6.0 '
13
+ image : " maurodatamapper/mauro-data-mapper:${MDM_TAG} "
13
14
build :
14
15
context : mauro-data-mapper
15
16
args :
16
- MDM_APPLICATION_COMMIT : 4.10 .0
17
- MDM_UI_COMMIT : 6.6 .0
17
+ MDM_APPLICATION_COMMIT : 4.11 .0
18
+ MDM_UI_COMMIT : 6.7 .0
18
19
ADDITIONAL_PLUGINS : " "
19
20
MDM_UI_THEME_NAME : " default"
20
21
environment :
21
22
PGPASSWORD : postgresisawesome
22
23
runtime.config.path : /usr/local/tomcat/conf/runtime.yml
23
24
ports :
24
- - " 8082 :8080"
25
+ - " ${MDM_PORT} :8080"
25
26
depends_on :
26
27
- postgres
27
28
volumes :
You can’t perform that action at this time.
0 commit comments