How to mention specific version while installing docker on Raspberry Pi
I am trying to install dockers
on Raspberry pi
which is arm
based device. Initially I used to run below command in order to install docker:
curl -sSL get.docker.com | sh
This install the latest version of dockers but I wanted to install an older version, which command should I use. This link have some useful answer but they are not working on Raspberry pi
. Please help. Thanks
docker installation raspberry-pi version
add a comment |
I am trying to install dockers
on Raspberry pi
which is arm
based device. Initially I used to run below command in order to install docker:
curl -sSL get.docker.com | sh
This install the latest version of dockers but I wanted to install an older version, which command should I use. This link have some useful answer but they are not working on Raspberry pi
. Please help. Thanks
docker installation raspberry-pi version
add a comment |
I am trying to install dockers
on Raspberry pi
which is arm
based device. Initially I used to run below command in order to install docker:
curl -sSL get.docker.com | sh
This install the latest version of dockers but I wanted to install an older version, which command should I use. This link have some useful answer but they are not working on Raspberry pi
. Please help. Thanks
docker installation raspberry-pi version
I am trying to install dockers
on Raspberry pi
which is arm
based device. Initially I used to run below command in order to install docker:
curl -sSL get.docker.com | sh
This install the latest version of dockers but I wanted to install an older version, which command should I use. This link have some useful answer but they are not working on Raspberry pi
. Please help. Thanks
docker installation raspberry-pi version
docker installation raspberry-pi version
edited Nov 12 '18 at 8:23
Gunasekar
5201517
5201517
asked Nov 12 '18 at 8:13
S AndrewS Andrew
7331041
7331041
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
We can use below command to mention the version while installing the docker using curl
command. I have tested this on Raspberry pi
and it works fine so should also work fine on other linux based os.
export VERSION=18.03 && curl -sSL get.docker.com | sh
Refer this answer
add a comment |
As far as I am aware, you can't select the version using this method. To do this, I use the following technique:
- Tell the Pi about the required repo
echo "deb [arch=armhf] https://download.docker.com/linux/debian $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list
sudo apt update
- List available versions
apt list -a docker-ce
Which will produce a list such as
docker-ce/stretch 5:18.09.0~3-0~debian-stretch armhf [upgradable from: 18.06.0~ce~3-0~debian]
docker-ce/stretch 18.06.1~ce~3-0~debian armhf
docker-ce/stretch,now 18.06.0~ce~3-0~debian armhf [installed,upgradable to: 5:18.09.0~3-0~debian-stretch]
docker-ce/stretch 18.03.1~ce-0~debian armhf
docker-ce/stretch 18.03.0~ce-0~debian armhf
docker-ce/stretch 17.12.1~ce-0~debian armhf
docker-ce/stretch 17.12.0~ce-0~debian armhf
- Select the version you want, for example
sudo apt-get install docker-ce=18.06.0~ce~3-0~debian
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53258109%2fhow-to-mention-specific-version-while-installing-docker-on-raspberry-pi%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
We can use below command to mention the version while installing the docker using curl
command. I have tested this on Raspberry pi
and it works fine so should also work fine on other linux based os.
export VERSION=18.03 && curl -sSL get.docker.com | sh
Refer this answer
add a comment |
We can use below command to mention the version while installing the docker using curl
command. I have tested this on Raspberry pi
and it works fine so should also work fine on other linux based os.
export VERSION=18.03 && curl -sSL get.docker.com | sh
Refer this answer
add a comment |
We can use below command to mention the version while installing the docker using curl
command. I have tested this on Raspberry pi
and it works fine so should also work fine on other linux based os.
export VERSION=18.03 && curl -sSL get.docker.com | sh
Refer this answer
We can use below command to mention the version while installing the docker using curl
command. I have tested this on Raspberry pi
and it works fine so should also work fine on other linux based os.
export VERSION=18.03 && curl -sSL get.docker.com | sh
Refer this answer
answered Nov 14 '18 at 6:32
S AndrewS Andrew
7331041
7331041
add a comment |
add a comment |
As far as I am aware, you can't select the version using this method. To do this, I use the following technique:
- Tell the Pi about the required repo
echo "deb [arch=armhf] https://download.docker.com/linux/debian $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list
sudo apt update
- List available versions
apt list -a docker-ce
Which will produce a list such as
docker-ce/stretch 5:18.09.0~3-0~debian-stretch armhf [upgradable from: 18.06.0~ce~3-0~debian]
docker-ce/stretch 18.06.1~ce~3-0~debian armhf
docker-ce/stretch,now 18.06.0~ce~3-0~debian armhf [installed,upgradable to: 5:18.09.0~3-0~debian-stretch]
docker-ce/stretch 18.03.1~ce-0~debian armhf
docker-ce/stretch 18.03.0~ce-0~debian armhf
docker-ce/stretch 17.12.1~ce-0~debian armhf
docker-ce/stretch 17.12.0~ce-0~debian armhf
- Select the version you want, for example
sudo apt-get install docker-ce=18.06.0~ce~3-0~debian
add a comment |
As far as I am aware, you can't select the version using this method. To do this, I use the following technique:
- Tell the Pi about the required repo
echo "deb [arch=armhf] https://download.docker.com/linux/debian $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list
sudo apt update
- List available versions
apt list -a docker-ce
Which will produce a list such as
docker-ce/stretch 5:18.09.0~3-0~debian-stretch armhf [upgradable from: 18.06.0~ce~3-0~debian]
docker-ce/stretch 18.06.1~ce~3-0~debian armhf
docker-ce/stretch,now 18.06.0~ce~3-0~debian armhf [installed,upgradable to: 5:18.09.0~3-0~debian-stretch]
docker-ce/stretch 18.03.1~ce-0~debian armhf
docker-ce/stretch 18.03.0~ce-0~debian armhf
docker-ce/stretch 17.12.1~ce-0~debian armhf
docker-ce/stretch 17.12.0~ce-0~debian armhf
- Select the version you want, for example
sudo apt-get install docker-ce=18.06.0~ce~3-0~debian
add a comment |
As far as I am aware, you can't select the version using this method. To do this, I use the following technique:
- Tell the Pi about the required repo
echo "deb [arch=armhf] https://download.docker.com/linux/debian $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list
sudo apt update
- List available versions
apt list -a docker-ce
Which will produce a list such as
docker-ce/stretch 5:18.09.0~3-0~debian-stretch armhf [upgradable from: 18.06.0~ce~3-0~debian]
docker-ce/stretch 18.06.1~ce~3-0~debian armhf
docker-ce/stretch,now 18.06.0~ce~3-0~debian armhf [installed,upgradable to: 5:18.09.0~3-0~debian-stretch]
docker-ce/stretch 18.03.1~ce-0~debian armhf
docker-ce/stretch 18.03.0~ce-0~debian armhf
docker-ce/stretch 17.12.1~ce-0~debian armhf
docker-ce/stretch 17.12.0~ce-0~debian armhf
- Select the version you want, for example
sudo apt-get install docker-ce=18.06.0~ce~3-0~debian
As far as I am aware, you can't select the version using this method. To do this, I use the following technique:
- Tell the Pi about the required repo
echo "deb [arch=armhf] https://download.docker.com/linux/debian $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list
sudo apt update
- List available versions
apt list -a docker-ce
Which will produce a list such as
docker-ce/stretch 5:18.09.0~3-0~debian-stretch armhf [upgradable from: 18.06.0~ce~3-0~debian]
docker-ce/stretch 18.06.1~ce~3-0~debian armhf
docker-ce/stretch,now 18.06.0~ce~3-0~debian armhf [installed,upgradable to: 5:18.09.0~3-0~debian-stretch]
docker-ce/stretch 18.03.1~ce-0~debian armhf
docker-ce/stretch 18.03.0~ce-0~debian armhf
docker-ce/stretch 17.12.1~ce-0~debian armhf
docker-ce/stretch 17.12.0~ce-0~debian armhf
- Select the version you want, for example
sudo apt-get install docker-ce=18.06.0~ce~3-0~debian
answered Nov 13 '18 at 20:09
Jack of ShadowsJack of Shadows
11
11
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53258109%2fhow-to-mention-specific-version-while-installing-docker-on-raspberry-pi%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown