Creating a backup service container
1. Create a new container
This container should be a Linux-based container. The below docker-compose.yaml file is aa good example.
services:
backup-container:
image: ubuntu:22.04
container_name: backupper
command: sleep infinity
ports:
...