jenkins docker image , how to ?

Before posting something, READ the changelog, WATCH the videos, howto and provide following:
Your install is: Bare metal, ESXi, what CPU model, RAM, HD, what EVE version you have, output of the uname -a and any other info that might help us faster.

Moderator: mike

Post Reply
macario
Posts: 8
Joined: Thu Nov 02, 2017 3:40 am

jenkins docker image , how to ?

Post by macario » Tue Oct 22, 2019 7:39 pm

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.

eveadmin
Site Admin
Posts: 5
Joined: Wed Mar 15, 2017 12:53 pm

Re: jenkins docker image , how to ?

Post by eveadmin » Wed Oct 23, 2019 2:16 pm

Hi,


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.

Post Reply