linux/arm,linux/arm64,linux/amd64 多平台支持,甲骨文ARM、华为ARM、香橙派ARM 测试可以使用,nginx-php-fpm7.3 镜像使用apt安装,debian默认系统配置
|
3 gadi atpakaļ | |
---|---|---|
lnmp | 3 gadi atpakaļ | |
Dockerfile | 4 gadi atpakaļ | |
LICENSE | 4 gadi atpakaļ | |
README.md | 4 gadi atpakaļ | |
default | 4 gadi atpakaļ | |
start.sh | 4 gadi atpakaļ | |
supervisord.conf | 4 gadi atpakaļ |
# 下载 nginx-php7.4-fpm 项目源码
git clone https://github.com/hongwenjun/nginx-php.git
cd nginx-php
# Docker 编译 Dockerfile
docker build -t nginx-php .
# 测试启动 nginx-php7.4-fpm 容器
docker run -d -p 8888:80 --name nginx-php nginx-php
# 进入容器
docker exec -it nginx-php bash
docker login
Username: hongwenjun Password: ******
WARNING! Your password will be stored unencrypted in /root/.docker/config.json.
vim Dockerfile
docker build -t hongwenjun/nginx-php .
docker push hongwenjun/nginx-php
docker run -d -p 80:80 -p 443:443 \
--cpus 0.8 --restart=always \
-v /var/www/html:/var/www/html \
--name nginx-php \
hongwenjun/nginx-php
FROM debian:unstable-slim
# 安装 nginx supervisor php7.4-fpm 省略 ......
# 映射目录和端口和三个配置文件
VOLUME [/var/www/html /etc/nginx/sites-enabled ]
EXPOSE 80/tcp 443/tcp
# COPY ./default /etc/nginx/sites-enabled/default
# COPY ./supervisord.conf /etc/supervisord.conf
# COPY ./start.sh /start.sh
CMD ["/start.sh"]
# /etc/nginx/sites-enabled/default
server {
listen 80 default_server;
listen [::]:80 default_server;
# listen 443 ssl default_server;
# listen [::]:443 ssl default_server;
root /var/www/html;
index index.html index.php index.nginx-debian.html;
server_name _;
location / {
try_files $uri $uri/ =404;
}
# pass PHP scripts to FastCGI server
location ~ .*\.php(\/.*)*$ {
include snippets/fastcgi-php.conf;
# # With php-fpm (or other unix sockets):
fastcgi_pass unix:/run/php/php7.4-fpm.sock;
}
}
---
version: "2.1"
services:
nginx:
image: ghcr.io/linuxserver/nginx
container_name: nginx
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/London
volumes:
- </path/to/appdata/config>:/config
ports:
- 80:80
- 443:443
restart: unless-stopped
docker run -d \
--name=nginx \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=Europe/London \
-p 80:80 \
-p 443:443 \
-v </path/to/appdata/config>:/config \
--restart unless-stopped \
ghcr.io/linuxserver/nginx