Skip to content

Commit 3d225fc

Browse files
author
jenkins
committed
Merge branch 'release/B4.11.0_F6.7.0' into main
2 parents 179cc4a + dda3f84 commit 3d225fc

File tree

4 files changed

+41
-43
lines changed

4 files changed

+41
-43
lines changed

.env

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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}

.env.cd

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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

docker-compose-cd.yml

Lines changed: 0 additions & 39 deletions
This file was deleted.

docker-compose.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
version: '3.8'
22
services:
33
postgres:
4+
image: "maurodatamapper/postgres:12.0-alpine"
45
build: ./postgres
56
shm_size: 512mb
67
environment:
@@ -9,19 +10,19 @@ services:
910
- postgres12:/var/lib/postgresql/data
1011
restart: on-failure
1112
mauro-data-mapper:
12-
image: 'maurodatamapper/mauro-data-mapper:B4.10.0_F6.6.0'
13+
image: "maurodatamapper/mauro-data-mapper:${MDM_TAG}"
1314
build:
1415
context: mauro-data-mapper
1516
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
1819
ADDITIONAL_PLUGINS: ""
1920
MDM_UI_THEME_NAME: "default"
2021
environment:
2122
PGPASSWORD: postgresisawesome
2223
runtime.config.path: /usr/local/tomcat/conf/runtime.yml
2324
ports:
24-
- "8082:8080"
25+
- "${MDM_PORT}:8080"
2526
depends_on:
2627
- postgres
2728
volumes:

0 commit comments

Comments
 (0)