Update for SP Server 8.1.9
This commit is contained in:
parent
ac2eb34ce8
commit
d58c71f096
12
Dockerfile
12
Dockerfile
@ -1,5 +1,5 @@
|
|||||||
# NAME ibm/spectrumprotect
|
# NAME ibm/spectrumprotect
|
||||||
# VERSION 8.1.7
|
# VERSION 8.1.9
|
||||||
# BUILD docker build -t="ibm/spectrumprotect:latest" .
|
# BUILD docker build -t="ibm/spectrumprotect:latest" .
|
||||||
# START docker run -dp 1500:1500 [ -p 1543:1543 ] -v source:/tsm -v source:/data --restart=always --name=spectrum-protect ibm/spectrumprotect
|
# START docker run -dp 1500:1500 [ -p 1543:1543 ] -v source:/tsm -v source:/data --restart=always --name=spectrum-protect ibm/spectrumprotect
|
||||||
|
|
||||||
@ -13,22 +13,22 @@ RUN yum -y install http://yum.leenooks.net/CentOS/7/base/redhat-release-7-6.el7.
|
|||||||
COPY install.xml install-fp.xml /tmp/
|
COPY install.xml install-fp.xml /tmp/
|
||||||
|
|
||||||
# New Install - Base level with License
|
# New Install - Base level with License
|
||||||
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 && \
|
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-fp.xml -acceptLicense && \
|
./install.sh -s -input /tmp/install-fp.xml -acceptLicense && \
|
||||||
rm -rf /tmp/build /tmp/install*xml
|
rm -rf /tmp/build /tmp/install*xml
|
||||||
|
|
||||||
## New Upgrade Install - Need to get license from base level - which you get from PPA. the patch you can get from Fixcentral
|
## New Upgrade Install - Need to get license from base level - which you get from PPA. the patch you can get from Fixcentral
|
||||||
## https://www.ibm.com/support/fixcentral
|
## https://www.ibm.com/support/fixcentral
|
||||||
## http://public.dhe.ibm.com/storage/tivoli-storage-management/maintenance/server/v8r1/Linux/8.1.?.???/x86_64/ ... for maintenance releases (without license files).
|
## 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://yum.leenooks.vpn/docker/tsm/8.x && \
|
#RUN SOURCE_URL=http://YOUR_SITE_URL_HERE SOURCE=SP_8.1_LIN86_SER_STG_ML.bin FIXPACK=8.1.9.000-IBM-SPSRV-Linuxx86_64.bin && \
|
||||||
# mkdir -p /tmp/build/base && cd /tmp/build/base && \
|
# mkdir -p /tmp/build/base && cd /tmp/build/base && \
|
||||||
# curl -SL ${SOURCE_URL}/SP_8.1_LIN86_SER_STG_ML.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.xml -acceptLicense && \
|
# ./install.sh -s -input /tmp/install.xml -acceptLicense && \
|
||||||
# rm -rf /tmp/build/base && \
|
# rm -rf /tmp/build/base && \
|
||||||
# mkdir -p /tmp/build/patch && cd /tmp/build/patch && \
|
# mkdir -p /tmp/build/patch && cd /tmp/build/patch && \
|
||||||
# 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}/${FIXPACK} > tsm && chmod +x tsm && ./tsm && rm -f tsm && \
|
||||||
# ./install.sh -s -input /tmp/install-fp.xml -acceptLicense && \
|
# ./install.sh -s -input /tmp/install-fp.xml -acceptLicense && \
|
||||||
# rm -rf /tmp/build /tmp/install*xml
|
# rm -rf /tmp/build /tmp/install*xml
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user