Ubuntu 安裝 docker[laradock]

Wsmallnews發表於2020-08-26

嘗試解除安裝舊版

$ sudo apt-get remove docker \
               docker-engine \
               docker.io

Apt 安裝

由於 apt 源使用 HTTPS 以確保軟體下載過程中不被篡改。因此,我們首先需要新增使用 HTTPS 傳輸的軟體包以及 CA 證照。

$ sudo apt-get update

$ sudo apt-get install \
    apt-transport-https \
    ca-certificates \
    curl \
    software-properties-common

更換軟體源

為了確認所下載軟體包的合法性,需要新增軟體源的 GPG 金鑰

# 阿里雲的源 GPG 金鑰
$ curl -fsSL https://mirrors.aliyun.com/docker-ce/linux/ubuntu/gpg | sudo apt-key add -

# 中科大 GPG 金鑰
$ curl -fsSL https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu/gpg | sudo apt-key add -


# 官方源
# $ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -

我們需要向 source.list 中新增 Docker 軟體源

# 阿里雲docker 源
// 使用這個
$ sudo add-apt-repository "deb [arch=amd64] https://mirrors.aliyun.com/docker-ce/linux/ubuntu $(lsb_release -cs) stable"

$ sudo add-apt-repository \
    "deb [arch=amd64] https://mirrors.aliyun.com/docker-ce/linux/ubuntu \ $(lsb_release -cs) \
    stable"

# 中科大的源
$ sudo add-apt-repository \
    "deb [arch=amd64] https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu \
    $(lsb_release -cs) \
    stable"


# 官方源
# $ sudo add-apt-repository \
#    "deb [arch=amd64] https://download.docker.com/linux/ubuntu \
#    $(lsb_release -cs) \
#    stable"

安裝

$ sudo apt-get update

$ sudo apt-get install docker-ce

更換docker源 為 阿里雲的 docker 源


$ vim /etc/docker/daemon.json
輸入以下內容
{
  "registry-mirrors": ["https://6n29kkt0.mirror.aliyuncs.com"]
}

# 重新載入某個服務的配置檔案,如果新安裝了一個服務,
# 歸屬於 systemctl 管理,要是新服務的服務程式配置檔案生效,需重新載入
sudo systemctl daemon-reload
# 重啟 docker
sudo systemctl restart docker

安裝 docker-compose

# 不翻牆特別慢
$ sudo curl -L https://github.com/docker/compose/releases/download/1.24.1/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose

$ sudo chmod +x /usr/local/bin/docker-compose

安裝必備的服務

安裝之前修改 .env

$ cd /data/html/laradock

$ cp .env-example .env

vim .env

# 修改 PHP 版本
PHP_VERSION=7.2

# 修改 MySQL 版本



# 修改為中國時區 UTC 改為 PRC 
WORKSPACE_TIMEZONE=PRC

# 是否切換國內源,改為 true
CHANGE_SOURCE=true

# php 不安裝 imageMagick ,這東西好像下載不下來,修改為 false
PHP_FPM_INSTALL_IMAGEMAGICK=false
$ docker-compose up -d nginx mysql

# 成功之後會有下面的容器
Starting laradock_docker-in-docker_1 ... done
Starting laradock_mysql_1            ... done
Starting laradock_workspace_1        ... done
Starting laradock_php-fpm_1          ... done
Starting laradock_nginx_1            ... done

安裝 php 多版本

第一步複製 php-fpm 放到 php-fpm 的下面,修改如下

## php-fpm 7.0 
php-fpm70:      # 修改名字為 php-fpm70
  build:
    context: ./php-fpm
    args:
      # ...
      - LARADOCK_PHP_VERSION=7.0    # 直接寫死版本號,或者 .env再加一個變數
      # ...
  volumes:
    # ...
    - ./php-fpm/php7.0.ini:/usr/local/etc/php/php.ini   # 使用 7.0 的配置檔案
    # ...

第二步修改 site 配置檔案

  • 方法一,修改站點配置檔案
fastcgi_pass php-upstream;
替換為
fastcgi_pass php-fpm70:9000;
  • 方法二
nginx Dockerfile 檔案修改

在這裡增加變數
ARG PHP_UPSTREAM_CONTAINER=php-fpm
ARG PHP70_UPSTREAM_CONTAINER=php-fpm70        // 新新增的


在這句下面
# Set upstream conf and remove the default conf
RUN echo "upstream php-upstream { server ${PHP_UPSTREAM_CONTAINER}:${PHP_UPSTREAM_PORT}; }" > /etc/nginx/conf.d/upstream.conf \
    && rm /etc/nginx/conf.d/default.conf

增加 php-fpm70
# 寫入 php-fpm70
RUN echo "upstream php70-upstream { server ${PHP70_UPSTREAM_CONTAINER}:${PHP_UPSTREAM_PORT}; }" >> /etc/nginx/conf.d/upstream.conf

然後將站點配置檔案修改為
fastcgi_pass php-upstream;
替換為
fastcgi_pass php70-upstream;

第三步,自動跟隨啟動

docker-compose  nginx 模組
depends_on:
    - php-fpm
    - php-fpm70     # 增加 php-fpm70

報錯

docker-compose up -d nginx mysql redis 報錯

報錯內容

 ---> Running in 17f639d49f8a
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0curl: (7) Failed to connect to raw.githubusercontent.com port 443: Connection refused
/bin/sh: 1: .: Can't open /home/laradock/.nvm/nvm.sh
ERROR: Service 'workspace' failed to build: The command '/bin/sh -c if [ ${INSTALL_NODE} = true ]; then     mkdir -p $NVM_DIR &&     curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash         && . $NVM_DIR/nvm.sh         && nvm install ${NODE_VERSION}         && nvm use ${NODE_VERSION}         && nvm alias ${NODE_VERSION}         && if [ ${NPM_REGISTRY} ]; then         npm config set registry ${NPM_REGISTRY}         ;fi         && if [ ${INSTALL_NPM_GULP} = true ]; then         npm install -g gulp         ;fi         && if [ ${INSTALL_NPM_BOWER} = true ]; then         npm install -g bower         ;fi         && if [ ${INSTALL_NPM_VUE_CLI} = true ]; then         npm install -g @vue/cli         ;fi         && if [ ${INSTALL_NPM_ANGULAR_CLI} = true ]; then         npm install -g @angular/cli         ;fi         && ln -s `npm bin --global` /home/laradock/.node-bin ;fi' returned a non-zero code: 2

解決

GWF 的問題,在 https://www.ipaddress.com/ 查詢 raw.githubusercontent.com 的真實 IP, 然後手工新增到 /etc/hosts, 比如 
199.232.28.133 raw.githubusercontent.com

更換軟體源

報錯內容

sudo add-apt-repository \
>     "deb [arch=amd64] https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu \
>     $(lsb_release -cs) \
>     stable"
Traceback (most recent call last):
  File "/usr/bin/add-apt-repository", line 95, in <module>
    sp = SoftwareProperties(options=options)
  File "/usr/lib/python3/dist-packages/softwareproperties/SoftwareProperties.py", line 109, in __init__
    self.reload_sourceslist()
  File "/usr/lib/python3/dist-packages/softwareproperties/SoftwareProperties.py", line 599, in reload_sourceslist
    self.distro.get_sources(self.sourceslist)    
  File "/usr/lib/python3/dist-packages/aptsources/distro.py", line 93, in get_sources
    (self.id, self.codename))
aptsources.distro.NoDistroTemplateException: Error: could not find a distribution template for Deepin/stable

解決:

sudo vim /usr/share/python-apt/templates/Deepin.info

Suite: unstable
改為
Suite: stable

更換完軟體源,apt-get update 更新報錯

錯誤:7 https://mirrors.aliyun.com/docker-ce/linux/ubuntu stable/stable amd64 Packages
  404  Not Found
命中:8 http://packages.microsoft.com/repos/vscode stable InRelease
正在讀取軟體包列表... 完成   
W: 倉庫 “https://mirrors.aliyun.com/docker-ce/linux/ubuntu stable Release” 沒有 Release 檔案。
N: 無法認證來自該源的資料,所以使用它會帶來潛在風險。
N: 參見 apt-secure(8) 手冊以瞭解倉庫建立和使用者配置方面的細節。
E: 無法下載 https://mirrors.aliyun.com/docker-ce/linux/ubuntu/dists/stable/stable/binary-amd64/Packages  404  Not Found
E: 部分索引檔案下載失敗。如果忽略它們,那將轉而使用舊的索引檔案。

解決:

沒有解決,並不影響後續 apt-get install docker-ce
本作品採用《CC 協議》,轉載必須註明作者和本文連結

相關文章