Keep tools on hosts current or remove them
Tools like docker compose
may be installed in different versions from l3d containers on hosts. This can cause some unintended consequences where e.g. a Drupal project is being deployed and properly started with docker compose up -d
with e.g. version 2.24.5, but then there is an admin who needs to rebuild that project manually. They go to the directory and call that command there, while version 2.20.0 of docker compose may be installed on the host. That may introduce changes to the create and start process of that project, only because it's a different compose version.
To avoid that, there are 2 options:
- update hosts regularly
- remove them and force ourselves to use l3d on hosts as well
Let's discuss, which route we should take.
Edited by jurgenhaas