Portainer the Window to Docker

I started using docker about 2 days ago and just as I know myself I already put it in production without knowing too much about it. Of course I had a bad experience, especially when after using a wordpress docker and doing development on the site, I did run: docker-compose down and then I did […]

Clean Docker Environment

In my fight with docker I need to have a clean environment. Here is how to get one: List all containers (only IDs) docker ps -aq Stop all running containers docker stop $(docker ps -aq) Remove all containers docker rm $(docker ps -aq) Remove all images docker rmi $(docker images -q) Remove all networks docker […]

Host your website at home (under construction)

All previous how-to-s are the preamble to the current post. In fact, what we desire is to host our website at home, and be in complete control on what and how we install on our server. At this point you should have an Ubuntu server on which Apache, MySQL, PHP and WordPress have been installed. […]

Install Linux

You heard about it, you are using it every day if you have a smart phone, but you never dared to get deeper into it and get your hands dirty. Let me introduce you to Linux. I will not go into the history and details, nor will I explain here what the difference between Linux […]