• 0 Posts
  • 7 Comments
Joined 1 year ago
cake
Cake day: June 8th, 2023

help-circle




  • I think it’s fine. For development, I don’t think it’s really wasteful at all to spin one up for a project and then throw it away. Those containers are designed to be disposable. Your could keep enough data to bootstrap your application in a file under version control and recreate it each time.

    If you put all of your databases for different projects on a single host on your network, it works great until you’re on a laptop somewhere away from your network. You’d need to solve for that using ssh tunnels or something. Or you could just host your databases on Linode or Digital Ocean or something so that they are always available, but there is a small cost associated with that.

    If I start a project, I typically use the tear down/rebuild database approach until it just doesn’t make sense anymore to do it that way, and then worry about more long term connectivity when it’s time for that.