Setup WordPress with Apache and phpMyAdmin in a Docker container

Advantages run Word-Press in docker container: LAMP (Linux, Apache, MySQL, PHP/Perl/Python) server is isolated from hosted OS and installation/updating/removing it or depended software doesn’t affect your host. You can easily update your instance with getting a new docker image. DataBase can be accessible from Docker network […]

Read more

Get Free SSL certificate for your site

Get a certificate with CertBot and Let’s Encrypt I decided to try with CertBot because this solution looks like fully automated and doesn’t require any maintenance. But, in another hand I was not sure that this way is the best. So, I decided to use the […]

Read more

Install Docker-compose onto Raspberry OS or Ubuntu

1. Get root rights with sudo: 2. Update your repositories and OS host:$ sudo -s Password: host:# host:# apt-get update host:# apt-get upgrade 3. Add Docker repository curl -fsSL https://download.docker.com/linux/debian/gpg | sudo gpg –dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg 4. Install Docker Engine echo "deb [arch=$(dpkg –print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/debian […]

Read more