Ubuntu Server 21.04 Install docker&docker-compose
Posted CIAS
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu Server 21.04 Install docker&docker-compose相关的知识,希望对你有一定的参考价值。
docker版本以及操作系统下载使用说明
系统 | docker | docker-compose | ubuntu 系统安装&下载 | MobaXterm 远程连接工具 |
Linux | 版本 | 版本 | download | download |
Docker
是一个开源的应用容器引擎,让开发者可以打包他们的应用以及依赖包到一个可移植的镜像中,然后发布到任何流行的 Linux或Windows 机器上,也可以实现虚拟化。容器是完全使用沙箱机制,相互之间不会有任何接口。
Docker Compose
Docker撰写依赖于Docker引擎来完成任何有意义的工作,因此请确保在本地或远程安装了Docker引擎,具体取决于您的设置。
自动部署docker,docker-compose脚本
cat << EOF > /root/docker_docker-compose_install.sh
#!/bin/sh
# -*- coding: utf-8 -*-
# Author: CIASM
# Date: 2021/12/08
apt install -y firewalld apt-transport-https ca-certificates curl software-properties-common gcc
apt -y install docker.io
sed -i 's/SELINUX=enforcing/SELINUX=disabled/' /etc/selinux/config && setenforce 0
apt -y install docker-compose
systemctl enable --now docker.service
EOF
执行docker,docker-compose安装
sh /root/docker_docker-compose_install.sh && rm -rf /root/docker_docker-compose_install.sh
以上是关于Ubuntu Server 21.04 Install docker&docker-compose的主要内容,如果未能解决你的问题,请参考以下文章
Ubuntu Server 21.04 Install ansible
Ubuntu Server 21.04 Install ansible
Ubuntu Server 21.04 Install ansible
Ubuntu Server 21.04 Install one key Generic mysql 8.0.26