Has anyone got some experience/advice for choosing between the options? It seems like they are:

My usecase is just to have a local single instance for testing apps against. I prefer to spin stuff up in Docker on the homelab.

  • Moonrise2473
    link
    fedilink
    English
    arrow-up
    7
    ·
    4 days ago

    I set garage via docker and it was not impossibly hard.

    Main problem is that there isn’t an admin panel and you can’t login to the docker container via docker exec, so you have to write some python (or other language of your choice) to send requests to the API port to:

    1. Set the layout of your server
    2. Create an user
    3. Create a bucket
    4. Assign that bucket to your user
    • johntash@eviltoast.org
      link
      fedilink
      English
      arrow-up
      3
      ·
      4 days ago

      You can use docker exec with garage docker image.

      I’m on mobile but I think you just need something like: docker exec containerid ./garage stats

      • Moonrise2473
        link
        fedilink
        English
        arrow-up
        1
        ·
        3 days ago

        Ah maybe I was missing the ./ , it said garage not found on path (on mobile, can’t try)

      • thirdBreakfast@lemmy.worldOP
        link
        fedilink
        English
        arrow-up
        1
        ·
        3 days ago

        This is correct, I already installed the minio cli, but when I came back and read this, I tried it out and yes, once garage is running in the container, you can

        alias garage="docker exec -ti <container name> /garage"
        

        so you can do the cli things like garage bucket info test-bucket or whatever. The --help for the garage command is pretty great, which is good since they don’t write it up much in the docs.