From 7b2e82c5061b79529ac05515b26270d11d120463 Mon Sep 17 00:00:00 2001 From: david Date: Thu, 31 Dec 2020 00:23:41 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8Dentrypoint.sh=E5=9C=A8UNRAID?= =?UTF-8?q?=E4=B8=AD777=E6=9D=83=E9=99=90=E6=97=A0=E6=B3=95=E6=89=A7?= =?UTF-8?q?=E8=A1=8C=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/AutoReseed.php | 2 +- docker/AMD64/Dockerfile | 2 +- docker/Arm64v8/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/AutoReseed.php b/app/AutoReseed.php index a818d78..00820de 100644 --- a/app/AutoReseed.php +++ b/app/AutoReseed.php @@ -13,7 +13,7 @@ use IYUU\Library\Table; class AutoReseed { // 版本号 - const VER = '1.10.18'; + const VER = '1.10.19'; // RPC连接 private static $links = []; // 客户端配置 diff --git a/docker/AMD64/Dockerfile b/docker/AMD64/Dockerfile index 3af3e16..feb1c1c 100644 --- a/docker/AMD64/Dockerfile +++ b/docker/AMD64/Dockerfile @@ -82,7 +82,7 @@ RUN set -ex \ && cp /IYUU/config/config.sample.php /IYUU/config/config.php \ && ln -sf /IYUU/config/config.php /config.php \ && cp /IYUU/docker/entrypoint.sh /entrypoint.sh \ - && chmod -R 777 /entrypoint.sh \ + && chmod +x /entrypoint.sh \ && apk del --purge *-dev \ && rm -rf /var/cache/apk/* /tmp/* /usr/share/man /usr/share/php7 \ # ---------- some config,clear work ---------- diff --git a/docker/Arm64v8/Dockerfile b/docker/Arm64v8/Dockerfile index c9d4808..9f18539 100644 --- a/docker/Arm64v8/Dockerfile +++ b/docker/Arm64v8/Dockerfile @@ -18,7 +18,7 @@ RUN set -ex \ && cp /IYUU/config/config.sample.php /IYUU/config/config.php \ && ln -sf /IYUU/config/config.php /config.php \ && cp /IYUU/docker/entrypoint.sh /entrypoint.sh \ - && chmod -R 777 /entrypoint.sh \ + && chmod +x /entrypoint.sh \ && apk del --purge *-dev \ && rm -rf /var/cache/apk/* /tmp/* /usr/share/man \ && echo "${TZ}" > /etc/timezone \