Skip to content
Snippets Groups Projects
Commit d7323d21 authored by Yaman Umuroglu's avatar Yaman Umuroglu
Browse files

[Jenkins] fix default vars for Jenkins launch script

parent 0c51fe0c
No related branches found
No related tags found
No related merge requests found
......@@ -2,11 +2,11 @@
# defaults, can be overriden by environment variables
# user to run Jenkins as -- see NOTE below regarding Docker access permissions
JENKINS_USER ?= jenkins
: ${JENKINS_USER=jenkins}
# port for Jenkins on host machine
JENKINS_PORT ?= 8080
: ${JENKINS_PORT=8080}
# make Jenkins config persistent by mounting into this folder
JENKINS_HOME ?= $(pwd)/jenkins_home
: ${JENKINS_HOME=$(pwd)/jenkins_home}
mkdir -p $JENKINS_HOME
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment