首页 > 开发 > PHP > 正文

php7 安装yar 生成docker镜像

2024-05-04 22:47:42
字体:
来源:转载
供稿:网友

Docker包含三个概念:

(1)远程仓库即远程镜像库所有镜像的聚集地(不可进入操作)。

(2)本地镜像即从远程仓库拉取过来的镜像

(3)运行起来的本地镜像叫做容器(分层的可操作)

Docker使用:

1.首先通过第三方镜像库(c.163.com)拉取相应的信息比如centos,ubuntu,tomcat等作为基础镜像。

Docker pull xxxx

2.运行下载好的镜像。

Docker run -dt -p 宿主机端口:镜像端口 --name起一个名字 镜像id/镜像名字 bash

-d 后台运行
-t 生成一个伪终端
-p 指定端口
--name 为运行的容器起一个名字

3.进入容器有两种方法

(1)docker exec -it容器名字/容器id bash(ctrl+d退出时不会停止该运行的容器)

(2)Docker attach 容器名字/容器id (ctrl+d退出时会停止该运行的容器)

4.开始下载编译环境所需的相应的工具和所需的依赖包

(1)yum安装wget以及编译的工具 yum install -y wget gcc gcc-c++ make openssl-devel

(2)更新国内yum源

Wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/xxx/Xxx表示你要选择的yum源-O 下载并以不同的文件名保存CentOS-Base.repo 表示命名的yum源

(3)下载各个版本的nginx版本

Wget http://nginx.org/download/xxxXxx表示你要选择的nginx的版本

(4)下载pcre

ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/xxx

Xxx表示选择的版本

(5)更新yum确保最新的

Yum update

(6)下载php7

http://php.net/downloads.php

选择版本,选择国界

(7)把以上下载的东西全部粘贴到/usr/local/src 并且全部解压

(8)编译nginx

(1)创建nginx用户

 groupadd -r nginxuseradd -r -g nginx nginx

(2)编译安装nginx

cd xxx 切换到您的nginx目录./configure --prefix=/usr/local/nginx --user=nginx --group=nginx --with-http_ssl_module --with-http_stub_status_module --with-pcre=/usr/local/src/pcre-8.37./configure参数说明:--prefix=指定文件的安装目录--user=指定用户--group指定用户组--with-使用已有的软件包和库文件Make && make install 出现问题自行百度echo "daemon off;" >> /usr/local/nginx/conf/nginx.conf #在nginx的配置文件里加上这一行很关键,这样nginx可以在docker启动的时候在后台运行!

(9)编译php

(1)准备php的依赖包

yum install -y bison bison-devel zlib-devel libmcrypt-devel mcrypt mhash-devel libxml2-devel libcurl-devel bzip2-devel readline-devel libedit-devel sqlite-devel 

(2)进入php文件目录

(3)开始编译php

./configure --prefix=/usr/local/php --with-zlib-dir --with-freetype-dir --enable-mbstring --with-libxml-dir=/usr/local/libxml --enable-soap --enable-calendar --with-curl --with-mcrypt --with-zlib --with-gd --disable-rpath --enable-inline-optimization --with-bz2 --with-zlib --enable-sockets --enable-sysvsem --enable-sysvshm --enable-pcntl --enable-mbregex --enable-exif --enable-bcmath --with-mhash --enable-zip --with-pcre-regex --with-mysql --with-pdo-mysql --with-mysqli --with-jpeg-dir=/usr/local/libjpeg --with-png-dir=/usr/local/libpng --enable-gd-native-ttf --with-openssl --with-fpm-user=www --with-fpm-group=www --with-libdir=lib64 --enable-ftp --with-imap --with-imap-ssl --with-kerberos --with-gettext --with-xmlrpc --with-xsl --enable-opcache --enable-fpm --enable-xml --enable-shmop --enable-session --enable-ctype --with-iconv-dir --with-iconv            
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表