Reputation: 357
I need instructions on how to install a specific version of docker (docker-engine) and docker-compose.
Docker version must be 1.11.2.
Docker-compose version must be 1.8.1.
I've googled and when I trying to install one of them, e.g. docker 1.11.2, then docker compose. And after this docker updating to latest version
Upvotes: 1
Views: 7101
Reputation: 263636
The Docker Debian/Ubuntu repository is at https://apt.dockerproject.org/. You can download individual deb packages under the directory https://apt.dockerproject.org/repo/pool/main/d/docker-engine/ for quite a few older versions.
The Docker Compose releases are provided by the github repo at: https://github.com/docker/compose/releases
Upvotes: 4