• @ArcticDagger
    link
    English
    5
    edit-2
    2 months ago

    Could you explain a bit more about why it’s insane to have it as a docked volume instead of a mount point on the host? I’m not too well-versed with docker (or maybe hosting in general)

    Edit: typo

    • @Lem453@lemmy.ca
      link
      fedilink
      English
      22 months ago

      A normal file system is something anything can access. You can open it in file browser. You can get to it via command line. You can ssh into from another computer and you can easily back it up with numerous tried and tested backup methods.

      Why lock yourself into only being able to access your data via docker?

      In a disaster scenario when you are trying to recover files, you will greatly appreciate being able to just see all the files super easily without anything fancy. It also means you can use any standard method to back up all those file.

      Recovery is also almost as easy, copy the files back to where they were and just run the docker container.

      • @ArcticDagger
        link
        English
        22 months ago

        Thank you, those are some good points!