Skip to content

Instantly share code, notes, and snippets.

@desmondmorris
Last active March 30, 2023 16:44
Show Gist options
  • Save desmondmorris/8813160 to your computer and use it in GitHub Desktop.
Save desmondmorris/8813160 to your computer and use it in GitHub Desktop.
Install jenkins in a docker container on ubuntu

Jenkins in Docker container on Ubuntu

Install Docker

curl -s https://get.docker.io/ubuntu/ | sudo sh

Pull jenkins docker image trusted build

sudo docker pull orchardup/jenkins

Start jenkins container

sudo docker run -d -p 80:8080 orchardup/jenkins

@hari070520
Copy link

After following all the steps given..Can you tell me what is the console URL of Jenkins? Usually it will be something like this localhost:80/Jenkins

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment