如何使用另一个 Debian 软件包安装 Docker?
How to install Docker with another Debian package?
我在 Docker 注册表中有 2 个映像,所以我的要求是创建 Debian 软件包以在已安装的机器上拉取这 2 个映像和 运行。我的问题是如果我想使用 Docker 命令,Docker 应该安装在给定的机器上。所以 Docker 已经安装好了,然后我们就可以使用它了。否则我必须在安装 Debian 软件包时安装它。
我的 DEBIAN/control
文件看起来像这样,
Package: bla-bla
Version: 1.0
Architecture: all
Priority: optional
Maintainer: Bla Bla <bla.bla@bla.com>
Installed-Size: 327000
Depends: unzip, curl, sqlite3, libsqlite3-dev, xdg-utils, apt-transport-https, ca-certificates, software-properties-common
Homepage: https://www.example.com/
Section: Network, Databases, Web Servers, JavaScript, Python;
Description: bla bla bla
我不时为 Depends
添加 Docker
和 docker
,但没有用。所以我在 preinst
文件中添加了以下行,
function check_whether_docker_installed() {
service=docker
is_running=$(ps aux | grep -v grep | grep -v "[=12=]" | grep $service | wc -l | awk '{print }')
if [ $is_running != "0" ]; then
echo -e "\nservice $service is running"
else
initd=$(ls /etc/init.d/ | grep $service | wc -l | awk '{ print }')
if [ $initd = "1" ]; then
startup=$(ls /etc/init.d/ | grep $service)
echo -e "\nStarting Docker service"
/etc/init.d/${startup} start
echo "Docker service successfully started"
else
echo -e "\nService $service not yet installed, going to install it"
sudo apt update
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable"
sudo apt update
apt-cache policy docker-ce
sudo apt install -y docker-ce
sudo chmod +x /var/run/docker.sock
echo "Docker successfully installed, let's check it again"
check_whether_docker_installed
fi
fi
}
function download_and_install_docker_compose() {
which docker-compose
if [ $? -eq 0 ]; then
echo -e "\ndocker-compose is installed!"
else
echo -e "\ndocker-compose is not installed!"
sudo curl -L "https://github.com/docker/compose/releases/download/1.27.3/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
echo "docker-compose is successfully installed, let's check it again"
download_and_install_docker_compose
fi
}
check_whether_docker_installed
download_and_install_docker_compose
sudo apt install -y docker-ce
此行无法 运行。它给了我以下错误。
E: Could not get lock /var/lib/dpkg/lock-frontend - open (11: Resource temporarily unavailable)
E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), is another process using it?
chmod: cannot access '/var/run/docker.sock': No such file or directory
是的,我知道会发生这种情况,因为我已经 运行 宁 sudo apt install my_package.deb
安装我的包,所以我的包中不能 运行 另一个 sudo apt install
命令。我该如何解决这个问题?这应该是一次性过程。
有一种可能的方法。
创建一个 shell
脚本,分为两部分。
- 第一部分涵盖所有
docker
pre-requisites 要求。
- 第二部分介绍了自定义
debian
包的安装命令。
要在一个命令中完成所有这些 运行,有几个选项:
- 在 http/https 服务器上托管 shell 脚本。确保要安装 debian 软件包的客户端计算机可以访问此 http/https 服务器。在您的客户端计算机上 运行:
$ curl -s http://example.com/my_installation_script.sh | bash
- 如果你想在云服务器上安装这个包,你可以在云提供商的对象存储中托管 shell-script(AWS:s3,Azure:Blob 存储,GCP:Google 云存储) 在你的客户端机器上 运行:
$ cloud_provider_cli service_name get object_file | cat object_file | bash
- 如果您同意保留脚本 public,您可以将脚本作为要点写在 Github_gist 上并在那里免费托管。在您的客户端计算机上:
$ curl -s https://gist.githubusercontent.com/long_url/shell_script.sh | bash
您可以通过单击 github 上的 raw
选项从 github 要点下载您的 shell 脚本来获得提到的 url。
我在 Docker 注册表中有 2 个映像,所以我的要求是创建 Debian 软件包以在已安装的机器上拉取这 2 个映像和 运行。我的问题是如果我想使用 Docker 命令,Docker 应该安装在给定的机器上。所以 Docker 已经安装好了,然后我们就可以使用它了。否则我必须在安装 Debian 软件包时安装它。
我的 DEBIAN/control
文件看起来像这样,
Package: bla-bla
Version: 1.0
Architecture: all
Priority: optional
Maintainer: Bla Bla <bla.bla@bla.com>
Installed-Size: 327000
Depends: unzip, curl, sqlite3, libsqlite3-dev, xdg-utils, apt-transport-https, ca-certificates, software-properties-common
Homepage: https://www.example.com/
Section: Network, Databases, Web Servers, JavaScript, Python;
Description: bla bla bla
我不时为 Depends
添加 Docker
和 docker
,但没有用。所以我在 preinst
文件中添加了以下行,
function check_whether_docker_installed() {
service=docker
is_running=$(ps aux | grep -v grep | grep -v "[=12=]" | grep $service | wc -l | awk '{print }')
if [ $is_running != "0" ]; then
echo -e "\nservice $service is running"
else
initd=$(ls /etc/init.d/ | grep $service | wc -l | awk '{ print }')
if [ $initd = "1" ]; then
startup=$(ls /etc/init.d/ | grep $service)
echo -e "\nStarting Docker service"
/etc/init.d/${startup} start
echo "Docker service successfully started"
else
echo -e "\nService $service not yet installed, going to install it"
sudo apt update
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable"
sudo apt update
apt-cache policy docker-ce
sudo apt install -y docker-ce
sudo chmod +x /var/run/docker.sock
echo "Docker successfully installed, let's check it again"
check_whether_docker_installed
fi
fi
}
function download_and_install_docker_compose() {
which docker-compose
if [ $? -eq 0 ]; then
echo -e "\ndocker-compose is installed!"
else
echo -e "\ndocker-compose is not installed!"
sudo curl -L "https://github.com/docker/compose/releases/download/1.27.3/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
echo "docker-compose is successfully installed, let's check it again"
download_and_install_docker_compose
fi
}
check_whether_docker_installed
download_and_install_docker_compose
sudo apt install -y docker-ce
此行无法 运行。它给了我以下错误。
E: Could not get lock /var/lib/dpkg/lock-frontend - open (11: Resource temporarily unavailable)
E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), is another process using it?
chmod: cannot access '/var/run/docker.sock': No such file or directory
是的,我知道会发生这种情况,因为我已经 运行 宁 sudo apt install my_package.deb
安装我的包,所以我的包中不能 运行 另一个 sudo apt install
命令。我该如何解决这个问题?这应该是一次性过程。
有一种可能的方法。
创建一个 shell
脚本,分为两部分。
- 第一部分涵盖所有
docker
pre-requisites 要求。 - 第二部分介绍了自定义
debian
包的安装命令。
要在一个命令中完成所有这些 运行,有几个选项:
- 在 http/https 服务器上托管 shell 脚本。确保要安装 debian 软件包的客户端计算机可以访问此 http/https 服务器。在您的客户端计算机上 运行:
$ curl -s http://example.com/my_installation_script.sh | bash
- 如果你想在云服务器上安装这个包,你可以在云提供商的对象存储中托管 shell-script(AWS:s3,Azure:Blob 存储,GCP:Google 云存储) 在你的客户端机器上 运行:
$ cloud_provider_cli service_name get object_file | cat object_file | bash
- 如果您同意保留脚本 public,您可以将脚本作为要点写在 Github_gist 上并在那里免费托管。在您的客户端计算机上:
$ curl -s https://gist.githubusercontent.com/long_url/shell_script.sh | bash
您可以通过单击 github 上的raw
选项从 github 要点下载您的 shell 脚本来获得提到的 url。