[Docker]容器基础实用教程

docker安装基础见前篇
基于Centos7安装Docker

#查看docker版本
docker version

#-----------------------------------------控制台输出----------------------------------
Client:
 Cloud integration: 1.0.17
 Version:           20.10.8
 API version:       1.41
 Go version:        go1.16.6
 Git commit:        3967b7d
 Built:             Fri Jul 30 19:55:20 2021
 OS/Arch:           darwin/amd64
 Context:           default
 Experimental:      true

Server: Docker Engine - Community
 Engine:
  Version:          20.10.8
  API version:      1.41 (minimum version 1.12)
  Go version:       go1.16.6
  Git commit:       75249d8
  Built:            Fri Jul 30 19:52:10 2021
  OS/Arch:          linux/amd64
  Experimental:     false
 containerd:
  Version:          1.4.9
  GitCommit:        e25210fe30a0a703442421b0f60afac609f950a3
 runc:
  Version:          1.0.1
  GitCommit:        v1.0.1-0-g4144b63
 docker-init:
  Version:          0.19.0
  GitCommit:        de40ad0
#------------------------------------------------------------------------------------

镜像基础操作

#查找镜像
docker search nginx
#----------------------------------------控制台输出-------------------------------------------------------------

NAME                              DESCRIPTION                                     STARS     OFFICIAL   AUTOMATED
nginx                             Official build of Nginx.                        15480     [OK]       
jwilder/nginx-proxy               Automated Nginx reverse proxy for docker con…   2066                 [OK]
richarvey/nginx-php-fpm           Container running Nginx + PHP-FPM capable of…   818                  [OK]
jc21/nginx-proxy-manager          Docker container for managing Nginx proxy ho…   242                  
linuxserver/nginx                 An Nginx container, brought to you by LinuxS…   152                  
tiangolo/nginx-rtmp               Docker image with Nginx using the nginx-rtmp…   141                  [OK]
jlesage/nginx-proxy-manager       Docker container for Nginx Proxy Manager        135                  [OK]
alfg/nginx-rtmp                   NGINX, nginx-rtmp-module and FFmpeg from sou…   107                  [OK]
jasonrivers/nginx-rtmp            Docker images to host RTMP streams using NGI…   93                   [OK]
nginxdemos/hello                  NGINX webserver that serves a simple page co…   72                   [OK]
privatebin/nginx-fpm-alpine       PrivateBin running on an Nginx, php-fpm & Al…   57                   [OK]
nginx/nginx-ingress               NGINX and  NGINX Plus Ingress Controllers fo…   55                   
nginxinc/nginx-unprivileged       Unprivileged NGINX Dockerfiles                  51                   
staticfloat/nginx-certbot         Opinionated setup for automatic TLS certs lo…   24                   [OK]
nginxproxy/nginx-proxy            Automated Nginx reverse proxy for docker con…   20                   
nginx/nginx-prometheus-exporter   NGINX Prometheus Exporter for NGINX and NGIN…   19                   
schmunk42/nginx-redirect          A very simple container to redirect HTTP tra…   19                   [OK]
centos/nginx-112-centos7          Platform for running nginx 1.12 or building …   15                   
centos/nginx-18-centos7           Platform for running nginx 1.8 or building n…   13                   
raulr/nginx-wordpress             Nginx front-end for the official wordpress:f…   13                   [OK]
mailu/nginx                       Mailu nginx frontend                            9                    [OK]
sophos/nginx-vts-exporter         Simple server that scrapes Nginx vts stats a…   7                    [OK]
navidonskis/nginx-php5.6          Docker nginx + php5.6 on Ubuntu                 7                    [OK]
ansibleplaybookbundle/nginx-apb   An APB to deploy NGINX                          2                    [OK]
wodby/nginx                       Generic nginx                                   1                    [OK]
#-------------------------------------------------------------------------------------------------------------
#选择一个nginx镜像 使用命令下载镜像
#拉取最新版本的镜像
docker pull nginx

查看镜像

docker images
#-----------------------------控制台输出-------------------------------------
REPOSITORY              TAG       IMAGE ID       CREATED      SIZE
phpdockerio/php73-fpm   latest    918fc516e945   2 days ago   162MB
nginx                   latest    ad4c705f24d3   7 days ago   133MB

通过镜像启动一个容器

docker run -i -t -d -p 80:80  nginx /bin/bash
#-----------------------------命令释义-------------------------------------
run:运行
-i:交互式操作
-t:终端
-p:端口 [宿主机端口]:[docker内部端口]
-d:后台运行

查看已经运行的容器

docker ps -a
#-----------------------------控制台输出---------------------------------------------------------------------------------
CONTAINER ID   IMAGE     COMMAND                  CREATED        STATUS        PORTS                               NAMES
78317fad8931   nginx     "/docker-entrypoint.…"   47 hours ago   Up 47 hours   0.0.0.0:80->80/tcp, :::80->80/tcp   nginx

进入已经运行的容器

docker exec -i -t 78317fad8931 /bin/bash
#-----------------------------命令释义-------------------------------------
方式一(推荐)-exec:退出容器终端,不会导致容器的停止。
方式二(不推荐)-attach:退出容器终端,会导致容器的停止。

停止已启动的容器

docker stop 78317fad8931

启动已经停止的容器

#重启
docker restart 78317fad8931

#启动
docker start 78317fad8931

删除已经停止的容器

# 注意删除容器前需要先stop容器,否则会出现错误
docker rm 78317fad8931
#-----------------------------未停止容器错误提示-------------------------------------
Error response from daemon: You cannot remove a running container 78317fad893178246db3c52743c2770704319f6f991160bd3b4f0ddc97ec3949. 
Stop the container before attempting removal or force remove

删除镜像

# 注意删除镜像前需要先删除容器,解除容器与镜像关联,否则会出现错误
docker rmi nginx
#-----------------------------未删除容器错误提示-------------------------------------
Error response from daemon: conflict: unable to remove repository reference "nginx" (must force) - container 78317fad8931 is using its referenced image ad4c705f24d3

搭建LNMP环境

安装nginx

#查找镜像
docker search nginx
#----------------------------------------控制台输出-------------------------------------------------------------

NAME                              DESCRIPTION                                     STARS     OFFICIAL   AUTOMATED
nginx                             Official build of Nginx.                        15480     [OK]       
jwilder/nginx-proxy               Automated Nginx reverse proxy for docker con…   2066                 [OK]
richarvey/nginx-php-fpm           Container running Nginx + PHP-FPM capable of…   818                  [OK]
jc21/nginx-proxy-manager          Docker container for managing Nginx proxy ho…   242                  
linuxserver/nginx                 An Nginx container, brought to you by LinuxS…   152                  
tiangolo/nginx-rtmp               Docker image with Nginx using the nginx-rtmp…   141                  [OK]
jlesage/nginx-proxy-manager       Docker container for Nginx Proxy Manager        135                  [OK]
alfg/nginx-rtmp                   NGINX, nginx-rtmp-module and FFmpeg from sou…   107                  [OK]
jasonrivers/nginx-rtmp            Docker images to host RTMP streams using NGI…   93                   [OK]
nginxdemos/hello                  NGINX webserver that serves a simple page co…   72                   [OK]
privatebin/nginx-fpm-alpine       PrivateBin running on an Nginx, php-fpm & Al…   57                   [OK]
nginx/nginx-ingress               NGINX and  NGINX Plus Ingress Controllers fo…   55                   
nginxinc/nginx-unprivileged       Unprivileged NGINX Dockerfiles                  51                   
staticfloat/nginx-certbot         Opinionated setup for automatic TLS certs lo…   24                   [OK]
nginxproxy/nginx-proxy            Automated Nginx reverse proxy for docker con…   20                   
nginx/nginx-prometheus-exporter   NGINX Prometheus Exporter for NGINX and NGIN…   19                   
schmunk42/nginx-redirect          A very simple container to redirect HTTP tra…   19                   [OK]
centos/nginx-112-centos7          Platform for running nginx 1.12 or building …   15                   
centos/nginx-18-centos7           Platform for running nginx 1.8 or building n…   13                   
raulr/nginx-wordpress             Nginx front-end for the official wordpress:f…   13                   [OK]
mailu/nginx                       Mailu nginx frontend                            9                    [OK]
sophos/nginx-vts-exporter         Simple server that scrapes Nginx vts stats a…   7                    [OK]
navidonskis/nginx-php5.6          Docker nginx + php5.6 on Ubuntu                 7                    [OK]
ansibleplaybookbundle/nginx-apb   An APB to deploy NGINX                          2                    [OK]
wodby/nginx                       Generic nginx                                   1                    [OK]
#-------------------------------------------------------------------------------------------------------------

#选择一个nginx镜像 使用命令下载镜像
#拉取最新版本的镜像
docker pull nginx
#------------------------------------控制台输出----------------------------------
Using default tag: latest
latest: Pulling from library/nginx
Digest: sha256:853b221d3341add7aaadf5f81dd088ea943ab9c918766e295321294b035f3f3e
Status: Image is up to date for nginx:latest
docker.io/library/nginx:latest

运行容器

docker run --name nginx -p 80:80 -d nginx
#------------------------------------释义----------------------------------
  --name 这里是别名,使用docker ps 会最后显示names
  -p  80:80    第一个80是服务器的端口,第二个80是docker容器端口,
  -d 要运行的容器名称 这里是nginx

查看运行结果

CONTAINER ID   IMAGE     COMMAND                  CREATED      STATUS          PORTS                               NAMES
78317fad8931   nginx     "/docker-entrypoint.…"   2 days ago   Up 17 minutes   0.0.0.0:80->80/tcp, :::80->80/tcp   nginx

访问nginx服务


image.png

安装PHP

docker search php
#--------------------------------------------------控制台输出---------------------------------------
NAME                           DESCRIPTION                                     STARS     OFFICIAL   AUTOMATED
php                            While designed for web development, the PHP …   6158      [OK]       
phpmyadmin/phpmyadmin          A web interface for MySQL and MariaDB.          1137                 [OK]
phpmyadmin                     phpMyAdmin - A web interface for MySQL and M…   323       [OK]       
webdevops/php-nginx            Nginx with PHP-FPM                              209                  [OK]
php-zendserver                 Zend Server - the integrated PHP application…   199       [OK]       
webdevops/php-apache-dev       PHP with Apache for Development (eg. with xd…   145                  [OK]
webdevops/php-apache           Apache with PHP-FPM (based on webdevops/php)    119                  [OK]
osixia/phpldapadmin            phpLDAPadmin with easy configuration via env…   116                  
phpunit/phpunit                PHPUnit is a programmer-oriented testing fra…   82                   [OK]
nazarpc/phpmyadmin             phpMyAdmin as Docker container, based on off…   61                   [OK]
phpipam/phpipam-www            phpIPAM is an open-source web IP address man…   53                   
thecodingmachine/php           General-purpose ultra-configurable PHP images   38                   [OK]
jakzal/phpqa                   Docker image with quality analysis tools for…   37                   [OK]
pierrecdn/phpipam              phpIPAM web IP address management applicatio…   36                   [OK]
erikdubbelboer/phpredisadmin   Simple web interface to manage Redis databas…   32                   [OK]
chialab/php                    Adding common PHP extensions to some of the …   28                   [OK]
devilbox/php-fpm               PHP-FPM Docker images based on original PHP …   26                   
phpdockerio/php7-fpm           PHP 7 FPM base container for PHPDocker.io.      19                   [OK]
phpstan/phpstan                Docker container to check your application w…   19                   [OK]
phpdockerio/php73-fpm          PHP 7.3 FPM base container for PHPDocker.io.    18                   
appsvc/php                     Azure App Service php dockerfiles               16                   [OK]
arm32v7/php                    While designed for web development, the PHP …   14                   
phpipam/phpipam-cron           phpIPAM is an open-source web IP address man…   14                   
graze/php-alpine               Smallish php7 alpine image with some common …   12                   [OK]
phpdockerio/php7-cli           PHP 7 CLI base container image for PHPDocker…   2                    [OK]

选择一个版本进行安装

docker pull phpdockerio/php73-fpm

查看nginx 默认运行的路径,因为要通过-v命令将容器内部的文件目录挂载到宿主机的对应目录,便于后期项目的管理
先进入已经启动的nginx容器

docker exec -it nginx /bin/bash
#查看nginx服务配置文件
vi /etc/nginx/conf.d/default.conf
#其中 root /usr/share/nginx/html 为容器的网络应用的根地址

创建并运行php容器

docker run -p 9000:9000 --name phpfpm -v /var/www/html:/usr/share/nginx/html -d phpdockerio/php73-fpm
#-p 将容器的9000端口与宿主机的9000端口进行映射

进入php 容器,找到路径/usr/share/nginx/html
创建一个文件 index_test.php 文件

docker exec -it phpfpm bash
#进入容器
cd /usr/share/nginx/html/ 
vi test.php
#根据自己的喜好echo一句话进行测试
echo '测试PHP文件访问';
  • 回到宿主机进入到 /var/www/html 已经生成了test.php文件
  • 进入nginx容器配置访问php 文件
  • 通过命令获取到phpfpm容器的内网ip地址
#方式一:通过命令行解析的方式进行ip的解析并获取
docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' phpfpm 
#方式二:通过检查配置的方式返回所有配置信息
docker inspect  phpfpm 

方式二

方式一和方式二都可以获取到IP地址,只不过方式一的命令不太方便记忆,我一般常用方式二进行查询配置
如上:我们获取到172.17.0.3,这个ip 需要配置到nginx容器的/etc/nginx/conf.d/default.conf文件的配置中(熟悉nginx配置的同学也可以自己在/etc/nginx/conf.d/目录下新建属于自己的.conf文件进行配置)

配置nginx 支持php 文件访问
docker exec -it nginx bash
#进入容器配置目录
cd /etc/nginx/conf.d/
vi default.conf
server {
    listen       80;
    listen  [::]:80;
    server_name  localhost;

    #charset koi8-r;
    #access_log  /var/log/nginx/host.access.log  main;

    location / {
        root   /usr/share/nginx/html;
        index  index.html index.htm;
    }
    
    #error_page  404              /404.html;

    # redirect server error pages to the static page /50x.html
    #
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   /usr/share/nginx/html;
    }

    # proxy the PHP scripts to Apache listening on 127.0.0.1:80
    #
    #location ~ \.php$ {
    #    proxy_pass   http://127.0.0.1;
    #}

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    location ~ \.php$ {
        root           /usr/share/nginx/html;
        #根据实际情况,配置成我们通过inspect命令获取的ip
        fastcgi_pass   172.17.0.3:9000;
        fastcgi_index  index.php;
        fastcgi_param   SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include        fastcgi_params;
    }

    # deny access to .htaccess files, if Apache's document root
    # concurs with nginx's one
    #
    #location ~ /\.ht {
    #    deny  all;
    #}
}

重启nginx容器,即可通过IP访问test.php

docker restart nginx
# http://ip/test.php

安装mysql

docker search mysql
docker pull mysql
docker run -p 3306:3306 --name mymysql -v $PWD/conf:/etc/mysql/conf.d -v $PWD/logs:/logs -v $PWD/data:/var/lib/mysql -e MYSQL_ROOT_PASSWORD=123456 -d mysql
-p 3306:3306:将容器的 3306 端口映射到宿主机的 3306 端口。
-v -v $PWD/conf:/etc/mysql/conf.d:将主机当前目录下的 conf/my.cnf 挂载到容器的 /etc/mysql/my.cnf。
-v $PWD/logs:/logs:将主机当前目录下的 logs 目录挂载到容器的 /logs。
-v $PWD/data:/var/lib/mysql :将主机当前目录下的data目录挂载到容器的 /var/lib/mysql 。
-e MYSQL_ROOT_PASSWORD=123456:初始化 root 用户的密码。

常见问题

MYSQL错误

用navicat for mysql连接mysql发现报错:Client does not support authentication protocol requested by server
解决方案:

#进入容器
docker exec -it [容器id] /bin/bash
#登陆mysql
mysql -uroot -p
#授权mysql的root用户
GRANT ALL ON *.* TO 'root'@'%';
#
flush privileges;
#更新加密规则:
ALTER USER 'root'@'localhost' IDENTIFIED BY 'password' PASSWORD EXPIRE NEVER;
#更新root用户密码
ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY '换成你的密码';
#刷新权限
flush privileges;

保存后重新连接mysql,连接成功
造成这个问题的原因是因为:

  • 我们通过docker pull mysql安装的mysql版本默认是最新的8.x
  • 在MySQL 8.0.11中,caching_sha2_password是默认的身份验证插件,而不是以往的mysql_native_password
  • 所以我们需要手动调整一下加密规则即可
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,937评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,503评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,712评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,668评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,677评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,601评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,975评论 3 396
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,637评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,881评论 1 298
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,621评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,710评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,387评论 4 319
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,971评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,947评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,189评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,805评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,449评论 2 342

推荐阅读更多精彩内容