Skip to content

Commit

Permalink
move proxy option to script
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-2020 committed Jan 7, 2025
1 parent f63c2aa commit 11eb219
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,15 @@ RUN \
echo "InstallDir=/opt/softwareag" >> installer.script && \
echo "adminPassword=${ADMIN_PASSWORD}" >> installer.script && \
echo "Username=${EMPOWER_USERNAME}" >> installer.script && \
echo "Password=${EMPOWER_PASSWORD}" >> installer.script
echo "Password=${EMPOWER_PASSWORD}" >> installer.script &&
echo "proxy=${PROXY}" >> installer.script

RUN echo 'Debug Installer script: ' && echo && cat installer.script

# Install software ...
# and Change user context to ...
USER sagadmin
RUN sh installer.bin -readScript installer.script -console --proxy "${PROXY}"
RUN sh installer.bin -readScript installer.script -console
RUN echo 'Debug installation log ...' && echo && find . -name "installLog.txt" | xargs cat

# Cleanup ...
Expand Down

0 comments on commit 11eb219

Please sign in to comment.