Oh, nice. Thanks!
This is me showing my docker ignorance, I suppose.
Comment on Docker in LXC vs VM
sugar_in_your_tea@sh.itjust.works 1 month agoYou don’t have to revert 8 services, you can stop/start them independently: docker compose stop <service name>
.
This is actually how I update my services, I just stop the ones I want to update, pull, and restart them. I do them one or two at a time, mostly to mitigate issues. The same is true for pulling down new versions, my process is:
docker compose up -d
brings up any stopped services using new image(s)I do this whenever I remember, and it works pretty well.
Oh, nice. Thanks!
This is me showing my docker ignorance, I suppose.
Croquette@sh.itjust.works 4 weeks ago
I split my docker containers so that I can selectively backup what I want easily on proxmox
For example, I am currently running an Abiotic Factor server that I don’t care to backup. So I just dont add the container to the backups and I am done.