Right now it looks like you can only run lemmy in docker-compose, is there work on an official container?

  • ericjmorey@lemmy.world
    link
    fedilink
    arrow-up
    0
    ·
    1 year ago

    As someone who doesn’t know much about this as I’m jumping in the deep end, what’s the difference?

    • Svengarlic @lemmy.worldOP
      link
      fedilink
      arrow-up
      1
      ·
      edit-2
      1 year ago

      A Docker image is a read-only template that contains the instructions for building a container. A Docker compose file is a YAML file that defines a set of Docker services.

      A Docker image is a static artifact that can be used to create multiple containers. A Docker compose file is a dynamic configuration file that can be used to create and manage containers at runtime.

      Docker images are typically used for building and deploying applications. Docker compose files are typically used for managing and orchestrate containers.

      That came out of an AI. I can deploy images more easily on my NAS, and I’ve worked with them in the past, so I want an official container so I can deploy it alongside all the other docker containers I have running.

      • ericjmorey@lemmy.world
        link
        fedilink
        arrow-up
        0
        ·
        1 year ago

        That came out of an AI

        is that why it doesn’t quite make sense to me?

        Can you make a container from the compose file?

        • Terrasque
          link
          fedilink
          arrow-up
          2
          ·
          1 year ago

          Think of container as a running VM. Image is the file system of the VM. The image itself is static, so when restarted alll file system changes get tossed out (you can map certain paths inside the container to other storage). A Dockerfile is a file that describes how to build the image (For example : Use an ubuntu base image, run these commands, copy this file in to this path, expose this network port, and when running the container, start this file when it boots up).

          When running a container you specify which image it should run, network ports to expose to the host network, environment variables that should be set inside the container, if it has access to a gpu, mapping paths to storage and so on. You can even change the startup command.

          A docker compose file is a config file that can define all those things, and define it for multiple containers, binding them together in one stack. So you could for example have a static web server, an api server, a database server, redis, and so on defined and configured via environment variables. And you could just do “docker compose up” to bring up all the parts in their own docker namespace and virtual network.

        • Svengarlic @lemmy.worldOP
          link
          fedilink
          arrow-up
          0
          ·
          1 year ago

          Yes, but the benefit of an official image would be that I wouldn’t have to recreate it when a new version was released, it would update itself when I reload the container.