…and more importantly, where is that setting stored so I can turn it on for all of them?

I realize this varies according to OS, so I’m specifically asking about my Turnkey Nextcloud and Turnkey Mediaserver containers, which are based on Debian Linux. It’s perhaps worth noting that my Turnkey Syncthing container, which uses the same base OS, does register its hostname with my DHCP server. I’ve gone digging around in /etc/ etc. in each of the containers, but so far I haven’t found any configuration differences that would explain the difference in behavior. (Also, if it matters, my DHCP server is the one included with OpenWRT and running on my router.)

By the way, I’m aware that the best answer might be “you have an X/Y problem and you really ought to use static IPs and/or setup a reverse proxy,” but I haven’t gotten to that point yet. Besides, I still want to satisfy my curiosity about DHCP and hostnames regardless.

EDIT: to be clear, this post is about LXC containers running directly in Proxmox, NOT Docker.

  • Morethanevil@lmy.mymte.de
    link
    fedilink
    English
    arrow-up
    8
    ·
    11 months ago

    You can pass hostnames in docker compose easily with

    hostname: myhostname

    Sometimes you can use container names too

    container_name: myapp

    It is that easy ☺️

      • Morethanevil@lmy.mymte.de
        link
        fedilink
        English
        arrow-up
        6
        ·
        edit-2
        11 months ago

        Okay this is easy too to set a hostname on debian or ubuntu Container:

        hostnamectl set-hostname myname

        • grue@lemmy.worldOP
          link
          fedilink
          English
          arrow-up
          3
          ·
          11 months ago

          root@syncthing ~# hostnamectl status
          Failed to connect to bus: No such file or directory

          • Morethanevil@lmy.mymte.de
            link
            fedilink
            English
            arrow-up
            4
            ·
            11 months ago

            Try this

            apt-get install libpam-systemd

            Restart LXC afterwards and try again. Let me know if it works now 🐱