Just curious if there is an easy way to back up my docker-compose.yaml and .env files. I have the following directory structure for my containers:
-docker
-<name of container>
-.env
-docker-compose.yml
I’d like to copy those two files for each container folder but no other subfolders that may also be in the container folder (config, data, etc). I’ve been trying to get my restic backups to do it but I just can’t figure it out.
Is there a better way?
I’d like to have backups in case my entire server dies.___
I have mine in git! I have:
-docker - .env - <thing name> - dockers-compose.yml
Then using
docker compose --env-file ../.env -v up -d
it uses the above .env file. (../
means up one folder)For more details and a bunch of my compose files checkout my repo! https://github.com/shadybraden/homelab/tree/main/docker