Hacker News new | ask | show | jobs
by sally_glance 1241 days ago
Can't speak for the parent but since I also use a docker-compose & traefik based setup I can describe my migration process (executed by ansible in my case, could easily be done manually though):

1. Copy docker-compose.yml (for my private stuff there is a single one containing all services + traefik) and config files (host-mounted into services from a config dir) to new host.

2. Start services (docker-compose up).

3. Restore runtime data (in my case I mostly pull some db dumps from my restic repos and load them into the db containers).