If you are one of them who access the docker machine using putty client, and you want to work with docker-compose, here is what you need to do:
- Open a putty client accessing the docker machine.
- Log in as root using command “sudo -i”
- Execute the following commands to download and install the docker-compose
- curl -L https://github.com/docker/compose/releases/download/1.6.2/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose
- chmod +x /usr/local/bin/docker-compose
- Once done, execute the command “docker-compose –version” to check whether version number is printed.
You could read about Docker-compose on this page.
Latest posts by Ajitesh Kumar (see all)
- Agentic Reasoning Design Patterns in AI: Examples - October 18, 2024
- LLMs for Adaptive Learning & Personalized Education - October 8, 2024
- Sparse Mixture of Experts (MoE) Models: Examples - October 6, 2024
I found it very helpful. However the differences are not too understandable for me