Skip to content

Commit 9970544

Browse files
Merge pull request #334 from TIBCOSoftware/fix-rmsvol-windows
Fix rms login issue in windows container image
2 parents 90b5d86 + 3992560 commit 9970544

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

cloud/docker/build_image.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -902,7 +902,7 @@ if !INSTALLATION_TYPE! EQU frominstallers (
902902
powershell -Command "(Get-Content '!TEMP_FOLDER!\tibcoHome\be\!ARG_BE_SHORT_VERSION!\bin\be-engine.tra') -replace @(Select-String -Path '!TEMP_FOLDER!\tibcoHome\be\!ARG_BE_SHORT_VERSION!\bin\be-engine.tra' -Pattern '^tibco.env.TIB_HOME').Line.Substring(19), 'c:/tibco' | Set-Content '!TEMP_FOLDER!\tibcoHome\be\!ARG_BE_SHORT_VERSION!\bin\be-engine.tra'"
903903

904904
if !IMAGE_NAME! EQU !RMS_IMAGE! (
905-
powershell -Command "Copy-Item '!BE_HOME!\examples\standard\WebStudio' -Destination '!TEMP_FOLDER!\tibcoHome\be\!ARG_BE_SHORT_VERSION!\examples\standard' -Recurse | out-null"
905+
powershell -Command "Copy-Item '!BE_HOME!\examples\standard\WebStudio' -Destination '!TEMP_FOLDER!\tibcoHome\be\!ARG_BE_SHORT_VERSION!\examples\standard\WebStudio' -Recurse | out-null"
906906

907907
if EXIST "!BE_HOME!\decisionmanager" (
908908
powershell -Command "Copy-Item '!BE_HOME!\decisionmanager' -Destination '!TEMP_FOLDER!\tibcoHome\be\!ARG_BE_SHORT_VERSION!' -Recurse | out-null"

cloud/docker/dockerfiles/Dockerfile-rms.win

+1-3
Original file line numberDiff line numberDiff line change
@@ -110,9 +110,7 @@ VOLUME \
110110
"c:\mnt\tibco\be\logs" \
111111
"c:\mnt\tibco\be\data-store" \
112112
"${BE_HOME}\rms\config\notify" \
113-
"${BE_HOME}\rms\config\security" \
114-
"${BE_HOME}\rms\shared" \
115-
"${BE_HOME}\examples\standard\WebStudio"
113+
"${BE_HOME}\rms\shared"
116114

117115
# The following is the list of communication ports that need to be open-n-available
118116
# Port 50000 is AS Listener Port, 50001 is AS Remote Listener Port, 5555 is JMX Port, RMS PORTs 8090 5000

cloud/docker/dockerfiles/Dockerfile-rms_fromtar.win

+1-3
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,7 @@ VOLUME \
5252
"c:\mnt\tibco\be\logs" \
5353
"c:\mnt\tibco\be\data-store" \
5454
"${BE_HOME}\rms\config\notify" \
55-
"${BE_HOME}\rms\config\security" \
56-
"${BE_HOME}\rms\shared" \
57-
"${BE_HOME}\examples\standard\WebStudio"
55+
"${BE_HOME}\rms\shared"
5856

5957
# The following is the list of communication ports that need to be open-n-available
6058
# # Port 50000 is AS Listener Port, 50001 is AS Remote Listener Port, 5555 is JMX Port, #RMS PORTs 8090 5000

0 commit comments

Comments
 (0)