← Back to context

Comment by railorsi

1 month ago

What’s the issue with running Postgres inside a docker container + regular backups? Never had problem and relatively easy to manage.

Why use a docker container? I run Postgres as is, what would I gain with running it in a container?

  • You can decouple Postgres and surrounding userspace upgrade cycles from your host os, if this is something that you want. Or run multiple different PG versions (have independent upgrades schedule) without being tied to the host os specific mechanisms for that.

  • It makes the whole thing is configured in a docker-compose file (or your raw Docker CLI invocation) + the data volume. So as long as you have those two things you can replicate it and move it to other hosts regardless of their distro.

    Compare that with using your distro's packaged version where you can have version variations, variations in default config or file path locations, etc.

no PITB, but mostly just 'it's hassle' for the application server I literally don't need backups, just automated provisioning/docker container etc. Adding postgres then means I need full backups including PITB because I don't even want to lose an hours data.