Docker and Jenkins

So, I’m to lazy for posting manually. That’s why I decided to set up the CI/CD for my blog. Jekyll is kinda geek blog engine, We are supposed to change the markdown files and re-build static files using one simply command.

bundle exec jekyll build

But I want to do less manual job. So, I created a custom container with Jenkins and Jekyll installed to build, deploy it on http://jenkins.ctops.pro/ and created a simple pipeline aimed to my blog’s repo

P.S. Just to remember, my docker run command

sudo docker run -d -p 8080:8080 -p 50000:50000 --restart=on-failure -v jenkins_home:/var/jenkins_home -v /var/www/html:/var/jenkins_home/html fearmer/myblog

2024

Docker and Jenkins

less than 1 minute read

So, I’m to lazy for posting manually. That’s why I decided to set up the CI/CD for my blog. Jekyll is kinda geek blog engine, We are supposed to change the ...

Back to top ↑