I have eve-ng pro and I need to install the jenkins docker image so I can http into it.
How can I do this ?
thank you
M
ps. I've the cookbook but it does not help. I tried to assign static ip with ip addr command on startup cfg but it does not work neither with jenkins image or other docker images I've tried it such as busybox.
jenkins docker image , how to ?
Moderator: mike
-
- Site Admin
- Posts: 5
- Joined: Wed Mar 15, 2017 12:53 pm
Re: jenkins docker image , how to ?
Hi,
Cut and paste code below
E.
Cut and paste code below

Code: Select all
#Create Dir
mkdir /opt/dockers-src/eve-jenkins
#Create dockerfile
cat > /opt/dockers-src/eve-jenkins/Dockerfile << EOF
FROM jenkins/jenkins:lts
USER root
RUN apt-get update && apt-get install -y net-tools bsdutils bash
EOF
# Build docker
cd /opt/dockers-src/eve-jenkins
docker -H tcp://127.0.0.1:4243 build -t eve-jenkins --rm=true .
E.