Tag: docker
-
Yet another how to run WordPress with Docker tutorial
There are already a lot of tutorials on how to run a WordPress blog from a Docker image. This one is more of the same and yet a little different. The usual approach includes a full stack containing WordPress as well as a database (e.g., MySQL, MariaDB, Postgres, etc.). However, since I was planning on…
-
Get your backups to safety with rsnapshot
In this article we learned how to backup Docker volumes. However, storing them on the same machine won’t do us any good should, for example, the harddrive fail. rsnapshot to the rescue. I run rsnsapshot as a Docker container from my home server and have set up a ssh source in the rsnapshot config file…
-
How to backup your Docker volumes
I’m running this blog from a Docker container behind a reverse proxy. That being said, I’m using volumes to persist my container data. Backing these up requires a bit more work than simply copying files from a to b. Backup commands using temporary containers In order to create a backup from a volume, I’m using…