Setup docker + jenkins + nginx

Let’s setup jenkins with docker with local url : jenkins.local First, add local url to /etc/hosts $ sudo echo -e “127.0.0.1\tjenkins.local” >> /etc/hosts Install docker and pull newest jenkins image $ sudo apt-get install docker.io $ sudo docker pull jenkins $ sudo docker run -itd –name jenkins –publish 8080:8080 –publish 50000:50000 jenkins Setup nginx $ … Read more

Setup nginx, php, wordpress in ubuntu

So after all these years I’ve had using apache for run something that runs with php, but since I know about nginx, I’ve been using this webserver instead of apache. This wordpress blog is running with nginx and php-fpm, because not like apache that you can run anything about php without install the additional package. With … Read more