I’m pretty new to the self hosting thing but I’m enjoying it a lot and want to go a bit further down the proverbial rabbit hole.

I’m looking at a bunch of services and they all require a DB, usually a MySQL DB. It seems counterintutitive to have 20 MySQL databases each in its own Docker container. So is there a way to have one DB across most of my services? (I realize that Nextcloud and other bigger items should have a dedicted DB.)

How would I set up a shared DB in a docker-compose file?

  • frankblack@lemmy.world
    link
    fedilink
    English
    arrow-up
    2
    arrow-down
    3
    ·
    1 year ago

    Not recommended as one service could screw up all the tables. Each service should have its own DB and then use persistence to a SSD or a NFS

    • Ricaz@lemmy.world
      link
      fedilink
      English
      arrow-up
      5
      ·
      1 year ago

      Virtually all database solutions support limiting users to specific databases/schemas/tables/whatever you need.

      Persistence to NFS is also generally bad advice for most databases for performance reasons.