Update for SP Server 8.1.9

This commit is contained in:
Deon George 2019-12-13 16:37:58 +11:00
parent dbcbdf68f3
commit 2db2cef7d5
1 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
# NAME ibm/spectrumprotect-oc
# VERSION 8.1.7
# VERSION 8.1.9
# BUILD docker build -t="ibm/spectrumprotect-oc:latest" .
# Since SP is supported on RHEL and its not available in docker, we'll use CentOS.
@ -12,9 +12,9 @@ COPY install-oc.xml /tmp/
# Installation
# http://public.dhe.ibm.com/storage/tivoli-storage-management/maintenance/server/v8r1/Linux/8.1.?.???/x86_64/ ... for maintenance releases (without license files).
RUN SOURCE_URL=http://YOUR_SITE_URL_HERE && \
RUN SOURCE_URL=http://YOUR_SITE_URL_HERE SOURCE=8.1.9.000-IBM-SPSRV-Linuxx86_64.bin && \
mkdir -p /tmp/build && cd /tmp/build && \
curl -SL ${SOURCE_URL}/8.1.7.000-IBM-SPSRV-Linuxx86_64.bin > tsm && chmod +x tsm && ./tsm && rm -f tsm && \
curl -SL ${SOURCE_URL}/${SOURCE} > tsm && chmod +x tsm && ./tsm && rm -f tsm && \
./install.sh -s -input /tmp/install-oc.xml -acceptLicense && \
rm -rf /tmp/build /tmp/install*xml