• Possibly linuxOP
    link
    English
    1
    edit-2
    4 months ago

    If you manage to create persistent containers how are you going to update them down the road? Like I have said previously, Samba isn’t designed in a way that allows for effectively hot swapping system components.

    It seems like it would better to create a VM template and then setup a fail over cluster. Just make sure you have a time server somewhere on the network.

    If you are dead set on containers you could try LDAP in a container. I just don’t think active directory was built for Linux containerization.

    • @[email protected]
      link
      fedilink
      14 months ago

      There are a few applications out there that I don’t fully understand the deployment of but seem to work in containers.

      Typically the storage is mounted outside of the container and passed through in the compose file for docker. This allows your data to be persistent. Ideally you would also want those to reside in a file system that can easily be snapshot like ZFS. When you pull down a new docker container, it should just remount the same location and begin to run.

      Or at least that’s how I’d imagine it would run. I feel like one would run into the same challenges people have running databases persistently in containers.