• LucidNightmare@lemmy.world
    link
    fedilink
    English
    arrow-up
    7
    ·
    edit-2
    2 months ago

    Thank you for your in depth explanation.

    I have never used docker, so I was thinking it was a bigger issue. You have given very good points, and I now know a little more about docker.

    Thank you!

      • LucidNightmare@lemmy.world
        link
        fedilink
        English
        arrow-up
        2
        ·
        2 months ago

        I tried installing a docker image on my server at one point, Synology brand, but it didn’t work out for me very well, so I gave up relatively quick as it was more just a curiosity than a need or want.

        Are docker images not easily installed on Synologys? I did read the guide for it, and did the commands. It just never worked for me.

        To give more info, it was for RustDesk self host.

        Also, thanks for being so nice and kind!

        • sugar_in_your_tea@sh.itjust.works
          link
          fedilink
          English
          arrow-up
          3
          ·
          2 months ago

          I haven’t used Synology, so I’m not sure. So I’ll just explain a bit how Docker works, which will hopefully give some context.

          Terminology:

          • image - the stuff hosted on https://hub.docker.com - basically the application and any dependencies it has
          • container - a disposable runtime for an image; stores new files separately from the image

          By default, the container doesn’t have access to anything that’s not explicitly passed to it, kind of like a VM, but without the expensive overhead a VM has.

          So the issues could be:

          • the image is incompatible with the host - pretty rare, but it happens
          • the container isn’t started
          • the container doesn’t have what it needs - maybe you need to expose a network port, or pass it a file
          • the Synology application isn’t configured to use the container

          For Synology and RustDesk specifically, I found this in the instructions:

          Synology has two types of Docker, “Docker” and “Container Manager”. If you’re using DSM 7.2 and later, please follow the guide for DSM 7.2, or follow the DSM 6 guide if you’re on older system.

          • Synology DSM 7.2
          • Synology DSM 6

          If you are using Synology with Portainer, please check this tutorial.

          If I had a Synology system to test with, I’d look into it for you, but that’s the best I’ve got. I run my own DIY NAS (old PC running openSUSE Leap w/ BTRFS, Samba, and minidlna configured).

          • LucidNightmare@lemmy.world
            link
            fedilink
            English
            arrow-up
            3
            ·
            2 months ago

            The other user on this thread pointed out, as you have, that they’ve updated the guide to include DSM 7s Container Manager, which is what I was originally trying it on to begin with. So, thanks to both of you, I now have a project to do this weekend to test out the updated guides! :)

        • frazorth@feddit.uk
          link
          fedilink
          English
          arrow-up
          2
          ·
          2 months ago

          If I remember correctly, from a friend who was trying to do something on a Synology, there was something screwy about those devices.

          Images that worked fine on a PC or a Pi just didn’t on the Synology. It’s been years so I don’t remember what, but don’t take those systems as a good example of Docker.