2022/4/25 17:03
centos7离线安装docker (二进制) - 凡人半睁眼 - 博客园
https://www.cnblogs.com/dgp-zjz/p/12673668.html
1/5
博客园 首页 新随笔 联系 管理 订阅
随笔- 258 文章- 0 评论- 27 阅读- 18万
centos7离线安装
centos7离线安装
docker (二进制)
docker (二进制)
一、离线安装
一、离线安装
新建路由
离线安装docker
https://download.docker.com/linux/static/stable/x86_64/ 下载离线包地址
https://download.docker.com/linux/static/stable/aarch64/
https://docs.docker.com/engine/install/binaries/
1 setup
2 systemd docker.service
3 然后将以下内容粘贴进去(通用):
公告
昵称: 凡人半睁眼
园龄: 3年
粉丝: 21
关注: 57
< 2022年4月 >
日 一 二 三 四 五 六
27 28 29 30 31 1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
1 2 3 4 5 6 7
搜索
找找看
谷歌搜索
常用链接
我的随笔
我的评论
我的参与
最新评论
我的标签
更多链接
积分与排名
积分 - 163100
君自故乡来,应知故乡事
Insist on doing something and feel life
1
2
1
2
3
1
1
2
3
4
5
6
7
8
9
10
11
12
13
0 0
windos:route add 10.2.101.0 mask 255.255.255.0 160.5.1.254
ssh 10.2.101.19 rancher01-1
cd /usr/local/resource/docker
tar -xvf docker-19.03.4.tgz
mv docker/* /usr/bin/ # 将二进制文件移动到bin下
vim /etc/systemd/system/docker.service
[Unit]
Description=Docker Application Container Engine
Documentation=https://docs.docker.com
After=network-online.target firewalld.service
Wants=network-online.target
[Service]
Type=notify
# the default is not to use systemd for cgroups because the delegate issu
# exists and systemd currently does not support the cgroup feature set re
# for containers run by docker
ExecStart=/usr/bin/dockerd -H tcp://0.0.0.0:2375 -H unix://var/run/docker
ExecReload=/bin/kill -s HUP $MAINPID
- 1
- 2
- 3
- 4
前往页