Posted on January 14, 2022
| 3 minutes
| 512 words
| Stefano Marinelli
Sometimes you want (or need) to assign a public OVH failover IP address to a FreeBSD jail but there’s not much documentation on how to do it inside a jail.
[Read More]
Posted on November 3, 2021
| 5 minutes
| 933 words
| Stefano Marinelli
Alpine Linux and lxd are perfect together, especially if combined with a good file system. Let’s see how to install them on a btrfs file system.
[Read More]
Posted on October 6, 2020
| 4 minutes
| 806 words
| Stefano Marinelli
Lxc containers are fast, small and useful. Proxmox Backup Server is quite slow with them, so here’s how to perform a fast and efficient backup using Borg.
[Read More]
Posted on September 21, 2020
| 3 minutes
| 431 words
| Stefano Marinelli
docker-compose allows you to define a set of containers in a single file. They will be in their “namespace” and can be linked and tied together.
[Read More]
Posted on September 7, 2020
| 4 minutes
| 672 words
| Stefano Marinelli
What I’ll be describing now is another kind of setup, based on two containers, and it will help you to understand some of the features of Docker.
[Read More]
Posted on August 31, 2020
| 2 minutes
| 378 words
| Stefano Marinelli
Docker has been a fundamental part of my setup for more than three years now. Day after day I tried to move as many services as possible to Docker and this was a very good move.
[Read More]
Posted on August 29, 2019
| 1 minutes
| 104 words
| Stefano Marinelli
Sometimes containers log a lot of things, and the logfile can become huge.
This happens because containers aren’t supposed to run for a long time but to be created/disposed regularly. Here’s how to fix this.
You have to instruct Docker, at launch, and tell how much you want the log file to grow before rotating and how many old logs you want to keep.
For example,
--log-opt max-size=50m --log-opt max-file=5
[Read More]