Captain
Captain copied to clipboard
Grouping is based on naming in stead of compose projects
When you use container_name in the docker-compose, the grouping is broken.
Reproduction: create the following docker-compose.yml in a folder called testdocker
services:
node-1:
container_name: custom-node
image: node
command: tail -f /dev/null
node-2:
image: node
command: tail -f /dev/null
Docker desktop groups them:
Captain does not:
Please let me know if you would like me to contribute a fix myself