I just recently moved a bunch of my services to docker compose and it is a breeze to setup. All you need is a config file and your squared away. No more dealing with lxc or manually configuring software. Just write a config and your done.

    • @[email protected]
      link
      fedilink
      21 year ago

      Be careful with portainer. While a nice UI, it abstracts away so much of the inner docker workings that you may not fully understand how your system works, if you exclusively interface with docker through this UI. You will ultimately have to get into the nitty gritty when something breaks (it will) and not understanding your stack will be cruel at that point.

  • @PhantomPhanatic
    link
    English
    7
    edit-2
    1 year ago

    I’ve been struggling figuring it out for the first time in a home server. Without understanding how a config file works it seems like magic.

    I’ve had a rough time getting permissions to work right for each container and am still not entirely sure how upgrades work. Though I do have to admit that once I had it set up once, moving it to a new server when I changed operating systems was much easier than the initial set up.

    It’s my first time running any kind of containerization service, and my first time running a Linux server (though I’ve used Linux off and on for over a decade) so maybe it’s just how new the idea is to me.

    • 🦥󠀠󠀠󠀠󠀠󠀠󠀠
      link
      English
      5
      edit-2
      1 year ago

      Upgrades can be done by either bumping the package version number in the config or using “latest” which will pull the latest version, the running the up command again.

      You can automate this with a package called Watchtower which will check daily for updates for the ones you config with the latter.

  • @Starbuck
    link
    English
    41 year ago

    If you’d like something a bit more real world, check out k3s and ArgoCD. I use Kubernetes professionally, so I’m certainly biased, but it’s incredibly powerful and with ArgoCD, all of your config lives on GitHub.