Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
D
docker
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
提交
问题看板
Open sidebar
陈欢
docker
Commits
b203ebec
提交
b203ebec
authored
6月 10, 2022
作者:
chenhuan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
php
上级
264b11b0
隐藏空白字符变更
内嵌
并排
正在显示
15 个修改的文件
包含
501 行增加
和
0 行删除
+501
-0
Dockerfile
base-images/debian-php-74/Dockerfile
+122
-0
Makefile
base-images/debian-php-74/Makefile
+9
-0
mime.types
base-images/debian-php-74/nginx/mime.types
+136
-0
nginx.conf
base-images/debian-php-74/nginx/nginx.conf
+89
-0
site.conf
base-images/debian-php-74/nginx/sites.d/site.conf
+33
-0
php-fpm.conf
base-images/debian-php-74/php/php-fpm.conf
+30
-0
sources.list
base-images/debian-php-74/sources.list
+10
-0
start.sh
base-images/debian-php-74/start.sh
+12
-0
nginx.conf
base-images/debian-php-74/supervisor/services/nginx.conf
+7
-0
php-fpm.conf
base-images/debian-php-74/supervisor/services/php-fpm.conf
+7
-0
supervisord.conf
base-images/debian-php-74/supervisor/supervisord.conf
+31
-0
dockette.png
base-images/debian-php-74/www/dockette.png
+0
-0
index.html
base-images/debian-php-74/www/index.html
+14
-0
phpinfo.php
base-images/debian-php-74/www/phpinfo.php
+1
-0
collection-2-1467562399963334800.wt
mongodb/data/db/collection-2-1467562399963334800.wt
+0
-0
没有找到文件。
base-images/debian-php-74/Dockerfile
0 → 100644
浏览文件 @
b203ebec
FROM
dockette/debian:buster
# PHP
ENV
PHP_MODS_DIR=/etc/php/7.4/mods-available
ENV
PHP_CLI_DIR=/etc/php/7.4/cli/
ENV
PHP_CLI_CONF_DIR=${PHP_CLI_DIR}/conf.d
ENV
PHP_CGI_DIR=/etc/php/7.4/cgi/
ENV
PHP_CGI_CONF_DIR=${PHP_CGI_DIR}/conf.d
ENV
PHP_FPM_DIR=/etc/php/7.4/fpm/
ENV
PHP_FPM_CONF_DIR=${PHP_FPM_DIR}/conf.d
ENV
PHP_FPM_POOL_DIR=${PHP_FPM_DIR}/pool.d
ENV
TZ=Europe/Prague
# INSTALLATION
#RUN echo "deb http://mirrors.aliyun.com/debian buster main contrib non-free" > /etc/apt/sources.list && \
# echo "deb-src http://mirrors.aliyun.com/debian buster main contrib non-free" >> /etc/apt/sources.list && \
# echo "deb http://mirrors.aliyun.com/debian buster-updates main contrib non-free" >> /etc/apt/sources.list && \
# echo "deb-src http://mirrors.aliyun.com/debian buster-updates main contrib non-free" >> /etc/apt/sources.list && \
# echo "deb http://mirrors.aliyun.com/debian-security buster/updates main contrib non-free" >> /etc/apt/sources.list && \
# echo "deb-src http://mirrors.aliyun.com/debian-security buster/updates main contrib non-free" >> /etc/apt/sources.list
RUN
apt update
&&
apt dist-upgrade
-y
&&
\
# DEPENDENCIES #############################################################
apt install -y wget curl apt-transport-https ca-certificates gnupg2 && \
# PHP DEB.SURY.CZ
##########################################################
wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg && \
echo "deb https://packages.sury.org/php/ buster main" > /etc/apt/sources.list.d/php.list && \
wget -O- http://nginx.org/keys/nginx_signing.key | apt-key add - && \
echo "deb http://nginx.org/packages/debian/ buster nginx" > /etc/apt/sources.list.d/nginx.list && \
echo "deb-src http://nginx.org/packages/debian/ buster nginx" >> /etc/apt/sources.list.d/nginx.list && \
apt update && \
apt install -y --no-install-recommends \
nginx \
supervisor \
php7.4-apc \
php7.4-apcu \
php7.4-bz2 \
php7.4-bcmath \
php7.4-calendar \
php7.4-cgi \
php7.4-cli \
php7.4-ctype \
php7.4-curl \
php7.4-fpm \
php7.4-geoip \
php7.4-gettext \
php7.4-gd \
php7.4-intl \
php7.4-imap \
php7.4-ldap \
php7.4-mbstring \
php7.4-memcached \
php7.4-mongodb \
php7.4-mysql \
php7.4-pdo \
php7.4-pgsql \
php7.4-redis \
php7.4-soap \
php7.4-sqlite3 \
php7.4-ssh2 \
php7.4-tidy \
php7.4-zip \
php7.4-xmlrpc \
php7.4-xsl && \
# COMPOSER
#################################################################
curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer --2 && \
# PHP MOD(s) ###############################################################
rm ${PHP_FPM_POOL_DIR}/www.conf && \
# NGINX
####################################################################
ln -sf /dev/stdout /var/log/nginx/access.log && \
ln -sf /dev/stderr /var/log/nginx/error.log && \
# CLEAN UP
#################################################################
rm /etc/nginx/conf.d/default.conf && \
apt-get clean -y && \
apt-get autoclean -y && \
apt-get remove -y wget curl && \
apt-get autoremove -y && \
rm -rf /var/lib/apt/lists/* /var/lib/log/* /tmp/* /var/tmp/*
# PHP
ADD
./php/php-fpm.conf /etc/php/7.4/
# NGINX
ADD
./nginx/nginx.conf /etc/nginx/
ADD
./nginx/mime.types /etc/nginx/
ADD
./nginx/sites.d /etc/nginx/sites.d
# WWW
ADD
./www /srv/www/
# SUPERVISOR
ADD
./supervisor/supervisord.conf /etc/supervisor/
ADD
./supervisor/services /etc/supervisor/conf.d/
# APPLICATION
WORKDIR
/srv
ADD
./start.sh /start.sh
RUN
chmod
+x /start.sh
# PORTS
EXPOSE
80
CMD
["sh","/start.sh"]
base-images/debian-php-74/Makefile
0 → 100644
浏览文件 @
b203ebec
.PHONY
:
build push tag
build
:
docker build
-f
Dockerfile
-t
php74 .
tag
:
docker tag php74 ccr.ccs.tencentyun.com/images-base/nginx-php-fpm:7.4
push
:
docker push ccr.ccs.tencentyun.com/images-base/nginx-php-fpm:7.4
base-images/debian-php-74/nginx/mime.types
0 → 100755
浏览文件 @
b203ebec
types {
# Data interchange
application/atom+xml atom;
application/json json map topojson;
application/ld+json jsonld;
application/rss+xml rss;
application/vnd.geo+json geojson;
application/xml rdf xml;
# JavaScript
# Normalize to standard type.
# https://tools.ietf.org/html/rfc4329#section-7.2
application/javascript js;
# Manifest files
application/manifest+json webmanifest;
application/x-web-app-manifest+json webapp;
text/cache-manifest appcache;
# Media files
audio/midi mid midi kar;
audio/mp4 aac f4a f4b m4a;
audio/mpeg mp3;
audio/ogg oga ogg opus;
audio/x-realaudio ra;
audio/x-wav wav;
image/bmp bmp;
image/gif gif;
image/jpeg jpeg jpg;
image/png png;
image/svg+xml svg svgz;
image/tiff tif tiff;
image/vnd.wap.wbmp wbmp;
image/webp webp;
image/x-jng jng;
video/3gpp 3gp 3gpp;
video/mp4 f4p f4v m4v mp4;
video/mpeg mpeg mpg;
video/ogg ogv;
video/quicktime mov;
video/webm webm;
video/x-flv flv;
video/x-mng mng;
video/x-ms-asf asf asx;
video/x-ms-wmv wmv;
video/x-msvideo avi;
# Serving `.ico` image files with a different media type
# prevents Internet Explorer from displaying then as images:
# https://github.com/h5bp/html5-boilerplate/commit/37b5fec090d00f38de64b591bcddcb205aadf8ee
image/x-icon cur ico;
# Microsoft Office
application/msword doc;
application/vnd.ms-excel xls;
application/vnd.ms-powerpoint ppt;
application/vnd.openxmlformats-officedocument.wordprocessingml.document docx;
application/vnd.openxmlformats-officedocument.spreadsheetml.sheet xlsx;
application/vnd.openxmlformats-officedocument.presentationml.presentation pptx;
# Web fonts
application/font-woff woff;
application/font-woff2 woff2;
application/vnd.ms-fontobject eot;
# Browsers usually ignore the font media types and simply sniff
# the bytes to figure out the font type.
# https://mimesniff.spec.whatwg.org/#matching-a-font-type-pattern
#
# However, Blink and WebKit based browsers will show a warning
# in the console if the following font types are served with any
# other media types.
application/x-font-ttf ttc ttf;
font/opentype otf;
# Other
application/java-archive ear jar war;
application/mac-binhex40 hqx;
application/octet-stream bin deb dll dmg exe img iso msi msm msp safariextz;
application/pdf pdf;
application/postscript ai eps ps;
application/rtf rtf;
application/vnd.google-earth.kml+xml kml;
application/vnd.google-earth.kmz kmz;
application/vnd.wap.wmlc wmlc;
application/x-7z-compressed 7z;
application/x-bb-appworld bbaw;
application/x-bittorrent torrent;
application/x-chrome-extension crx;
application/x-cocoa cco;
application/x-java-archive-diff jardiff;
application/x-java-jnlp-file jnlp;
application/x-makeself run;
application/x-opera-extension oex;
application/x-perl pl pm;
application/x-pilot pdb prc;
application/x-rar-compressed rar;
application/x-redhat-package-manager rpm;
application/x-sea sea;
application/x-shockwave-flash swf;
application/x-stuffit sit;
application/x-tcl tcl tk;
application/x-x509-ca-cert crt der pem;
application/x-xpinstall xpi;
application/xhtml+xml xhtml;
application/xslt+xml xsl;
application/zip zip;
text/css css;
text/html htm html shtml;
text/mathml mml;
text/plain txt;
text/vcard vcard vcf;
text/vnd.rim.location.xloc xloc;
text/vnd.sun.j2me.app-descriptor jad;
text/vnd.wap.wml wml;
text/vtt vtt;
text/x-component htc;
}
\ No newline at end of file
base-images/debian-php-74/nginx/nginx.conf
0 → 100755
浏览文件 @
b203ebec
user
www-data
;
worker_processes
auto
;
worker_rlimit_nofile
8192
;
pid
/var/run/nginx.pid
;
events
{
worker_connections
8000
;
}
http
{
##
# Basic Settings
##
sendfile
on
;
tcp_nopush
on
;
tcp_nodelay
on
;
types_hash_max_size
2048
;
server_tokens
off
;
client_max_body_size
128M
;
# server_names_hash_bucket_size 64;
# server_name_in_redirect off;
##
# Charset
##
include
/etc/nginx/mime.types
;
default_type
application/octet-stream
;
charset_types
text/css
text/plain
text/vnd
.wap.wml
application/javascript
application/json
application/rss
+xml
application/xml
;
##
# Logging Settings
##
log_format
main
'
$remote_addr
-
$remote_user
[
$time_local
]
"
$request
"
'
'
$status
$body_bytes_sent
"
$http_referer
"
'
'"
$http_user_agent
"
"
$http_x_forwarded_for
"'
;
access_log
/var/log/nginx/access.log
;
error_log
/var/log/nginx/error.log
warn
;
##
# Gzip Settings
##
gzip
on
;
gzip_disable
"msie6"
;
gzip_comp_level
5
;
gzip_min_length
256
;
gzip_proxied
any
;
gzip_vary
on
;
gzip_types
application/atom
+xml
application/javascript
application/json
application/ld
+json
application/manifest
+json
application/rss
+xml
application/vnd
.geo+json
application/vnd
.ms-fontobject
application/x-font-ttf
application/x-web-app-manifest
+json
application/xhtml
+xml
application/xml
font/opentype
image/bmp
image/svg
+xml
image/x-icon
text/cache-manifest
text/css
text/plain
text/vcard
text/vnd
.rim.location.xloc
text/vtt
text/x-component
text/x-cross-domain-policy
;
##
# Virtual Host Configs
##
include
/etc/nginx/conf.d/*.conf
;
include
/etc/nginx/sites.d/*
;
}
base-images/debian-php-74/nginx/sites.d/site.conf
0 → 100755
浏览文件 @
b203ebec
##
# Virtual Host Configs
##
upstream
app
{
server
unix
:/
var
/
run
/
php
-
fpm
.
sock
;
}
server
{
listen
80
;
index
index
.
html
index
.
php
;
root
/
srv
/
www
/;
location
/ {
try_files
$
uri
$
uri
/ /
index
.
php
$
is_args
$
args
;
}
location
~* \.
php
$ {
fastcgi_split_path_info
^(.+?\.
php
)(/.*)$;
fastcgi_pass
app
;
fastcgi_index
index
.
php
;
include
fastcgi_params
;
fastcgi_param
PATH_INFO
$
fastcgi_path_info
;
fastcgi_param
PATH_TRANSLATED
$
document_root
$
fastcgi_path_info
;
fastcgi_param
SCRIPT_FILENAME
$
realpath_root
$
fastcgi_script_name
;
fastcgi_param
DOCUMENT_ROOT
$
realpath_root
;
try_files
$
uri
=
404
;
}
}
\ No newline at end of file
base-images/debian-php-74/php/php-fpm.conf
0 → 100755
浏览文件 @
b203ebec
[
global
]
error_log
= /
proc
/
self
/
fd
/
2
daemonize
=
yes
[
www
]
;
if
we
send
this
to
/
proc
/
self
/
fd
/
1
,
it
never
appears
access
.
log
= /
proc
/
self
/
fd
/
2
user
=
www
-
data
group
=
www
-
data
listen
= /
var
/
run
/
php
-
fpm
.
sock
listen
.
owner
=
www
-
data
listen
.
group
=
www
-
data
listen
.
mode
=
0660
pm
=
dynamic
pm
.
max_children
=
9
pm
.
start_servers
=
3
pm
.
min_spare_servers
=
2
pm
.
max_spare_servers
=
3
pm
.
max_requests
=
200
catch_workers_output
=
yes
clear_env
=
no
php_admin_value
[
error_log
] = /
var
/
log
/
php
-
fpm
.
log
php_admin_value
[
open_basedir
]=
"/tmp:/var/tmp:/var/www:/srv"
php_admin_value
[
upload_tmp_dir
] =
"/tmp"
base-images/debian-php-74/sources.list
0 → 100644
浏览文件 @
b203ebec
# 默认注释了源码镜像以提高 apt update 速度,如有需要可自行取消注释
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ buster main contrib non-free
# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ buster main contrib non-free
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-updates main contrib non-free
# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-updates main contrib non-free
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-backports main contrib non-free
# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-backports main contrib non-free
deb https://mirrors.tuna.tsinghua.edu.cn/debian-security buster/updates main contrib non-free
# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian-security buster/updates main contrib non-free
base-images/debian-php-74/start.sh
0 → 100644
浏览文件 @
b203ebec
#!/bin/bash
myEnv
=
"/data/.env"
if
[
-f
"
$myEnv
"
]
;
then
cp
/data/.env /srv/www/.env
fi
/usr/bin/supervisord
--nodaemon
--configuration
/etc/supervisor/supervisord.conf
/usr/sbin/crond
-f
-L
/var/log/cron/cron.log
base-images/debian-php-74/supervisor/services/nginx.conf
0 → 100755
浏览文件 @
b203ebec
[program:nginx]
command
=
/usr/sbin/nginx
-g
"daemon
off
;
"
autostart=true
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
base-images/debian-php-74/supervisor/services/php-fpm.conf
0 → 100755
浏览文件 @
b203ebec
[
program
:
php
-
fpm
]
command
= /
usr
/
sbin
/
php
-
fpm7
.
4
-
F
-
R
-
y
/
etc
/
php
/
7
.
4
/
php
-
fpm
.
conf
autostart
=
true
stdout_logfile
=/
dev
/
stdout
stdout_logfile_maxbytes
=
0
stderr_logfile
=/
dev
/
stderr
stderr_logfile_maxbytes
=
0
base-images/debian-php-74/supervisor/supervisord.conf
0 → 100755
浏览文件 @
b203ebec
;
See
more
on
example
documentaion
.
;
https
://
github
.
com
/
Supervisor
/
supervisor
/
blob
/
master
/
supervisor
/
skel
/
sample
.
conf
[
unix_http_server
]
file
=/
var
/
run
/
supervisor
.
sock
chmod
=
0700
chown
=
nobody
:
nogroup
username
=
docker
password
=
loveit
[
supervisord
]
logfile
=/
var
/
log
/
supervisor
/
supervisord
.
log
pidfile
=/
var
/
run
/
supervisord
.
pid
childlogdir
=/
var
/
log
/
supervisor
logfile_maxbytes
=
50
MB
logfile_backups
=
10
loglevel
=
info
nodaemon
=
true
umask
=
022
identifier
=
supervisor
[
rpcinterface
:
supervisor
]
supervisor
.
rpcinterface_factory
=
supervisor
.
rpcinterface
:
make_main_rpcinterface
[
supervisorctl
]
serverurl
=
unix
:///
var
/
run
/
supervisor
.
sock
username
=
docker
password
=
loveit
[
include
]
files
= /
etc
/
supervisor
/
conf
.
d
/*.
conf
base-images/debian-php-74/www/dockette.png
0 → 100755
浏览文件 @
b203ebec
34.8 KB
base-images/debian-php-74/www/index.html
0 → 100755
浏览文件 @
b203ebec
<!DOCTYPE html>
<html>
<head>
<title>
Dockette
</title>
</head>
<body>
<center>
<h1>
Dockette
</h1>
<h2>
It works!
</h2>
<img
src=
"./dockette.png"
>
</center>
</body>
</html>
\ No newline at end of file
base-images/debian-php-74/www/phpinfo.php
0 → 100644
浏览文件 @
b203ebec
<?php
phpinfo
();
mongodb/data/db/collection-2-1467562399963334800.wt
0 → 100644
浏览文件 @
b203ebec
File added
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论