For those unfamiliar, DockGE is “A fancy, easy-to-use and reactive self-hosted docker compose.yaml stack-oriented manager.”

Similar to portainer

Warning

Breaking change: Due to the security reason, the “Console” feature is now disabled by default. If you need this feature and understand the risk, you can enable it via the environment variable DOCKGE_ENABLE_CONSOLE=true.

See link for full notes

  • lka1988@lemmy.dbzer0.com
    link
    fedilink
    English
    arrow-up
    0
    ·
    edit-2
    3 days ago

    I think you might be misunderstanding here, Dockge doesn’t really work like that. You don’t import “into” Dockge - it works alongside Docker, and all you need to do is point it to where your compose files are located. Which, like I said, is normally set to /opt/stacks/ - but that’s not set in stone and can be changed to another location via the DOCKGE_STACKS_DIR= env variable within Dockge’s own compose file (located in /opt/dockge/).

    For example: I can create the directory /opt/stacks/docker_container/, drop in my “docker_container” compose.yml file, and fire it up in the terminal with docker compose up -d, and Dockge will automatically see the compose file and the stack status. Or, I can point Dockge at a custom location such as /home/username/docker_stacks/, and so long as each compose file has a labeled folder inside that directory, that’s all you need to do to be done with it.

    Also, something I just remembered - the folder structure, wherever it’s located, needs to be all lowercase. Otherwise Dockge won’t see it.

    • darkknight@discuss.online
      link
      fedilink
      English
      arrow-up
      0
      ·
      2 days ago

      Thanks for the info, that’s definitely not how it’s working on my system, so I have something setup wrong. That explains my confusion.

    • zonk@fedia.io
      link
      fedilink
      arrow-up
      0
      ·
      3 days ago

      Thanks for the detailed explanation! One thing is unclear to me, though: what’s the difference between the path and the why do I still need the ENV in addition? Won’t they match anyway in 99% of the cases? Since there’s not really a reason to not set the path to the stack folder?

        • zonk@fedia.io
          link
          fedilink
          arrow-up
          0
          ·
          3 days ago

          Yeah, I saw that, but why is it needed in the first place? Just in case the stack is in a subfolder of the path? But why even do that, if the ENV only accepts a single value anyway? I’m wondering in which cases the path differs from the DOCKGE_STACKS_DIR env var?

          • lka1988@lemmy.dbzer0.com
            link
            fedilink
            English
            arrow-up
            0
            ·
            edit-2
            2 days ago

            It’s needed because that’s how Dockge manages the compose files - it needs to know where your compose files live. Dockge normally lives in it’s own directory, /opt/dockge/ (the dev gave a reason for that, but I don’t remember why), so it won’t see anything else until you point it to wherever your compose files are normally located.