filesite
3 years ago
2 changed files with 39 additions and 0 deletions
@ -0,0 +1,19 @@
@@ -0,0 +1,19 @@
|
||||
FROM alpine |
||||
RUN mkdir -p /var/www/machete && \ |
||||
mkdir -p /var/www/downloads && \ |
||||
apk add gcc g++ make cmake pkgconf libxml2-dev sqlite-dev && \ |
||||
cd /var/www/downloads && \ |
||||
wget "https://nginx.org/download/nginx-1.21.6.tar.gz" && \ |
||||
wget "https://www.php.net/distributions/php-8.1.6.tar.gz" && \ |
||||
tar -zxvf nginx-1.21.6.tar.gz && \ |
||||
tar -zxvf php-8.1.6.tar.gz && \ |
||||
cd nginx-1.21.6/ && \ |
||||
./configure --without-http_rewrite_module --without-http_gzip_module && \ |
||||
make && make install && \ |
||||
cd ../php-8.1.6/ && \ |
||||
./configure --enable-fpm && make && make install |
||||
##TODO: 下载最新源码,并配置好nginx完成部署 |
||||
|
||||
ENTRYPOINT ["/var/www/machete/docker-entrypoint.sh"] |
||||
## 默认使用导航站皮肤:webdirectory |
||||
CMD ["webdirectory"] |
@ -0,0 +1,20 @@
@@ -0,0 +1,20 @@
|
||||
#!/bin/sh |
||||
themes=( |
||||
manual |
||||
googleimage |
||||
webdirectory |
||||
) |
||||
|
||||
theme=$1 |
||||
if [ ! -z "${theme}" ]; then |
||||
if [[ ! "${themes[@]}" =~ "${theme}" ]]; then |
||||
theme=webdirectory |
||||
fi |
||||
else |
||||
theme=webdirectory |
||||
fi |
||||
|
||||
echo "Theme chosed [${theme}]." |
||||
|
||||
##TODO: 复制对应皮肤的配置文件到docker容器指定目录 |
||||
|
Loading…
Reference in new issue