We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09f171d commit c1ebe98Copy full SHA for c1ebe98
.github/workflows/docker-monitor.yaml
@@ -1,6 +1,6 @@
1
on:
2
schedule:
3
- - cron: '*/10 * * * *' # every 10 minutes
+ - cron: '@daily'
4
push:
5
branches:
6
- main
Dockerfile
@@ -62,7 +62,8 @@ RUN set -ex; \
62
docker-php-ext-enable --ini-name docker-php-ext-x-06-protobuf.ini protobuf; \
63
ln -sf /dev/stdout /var/log/nginx/access.log; \
64
ln -sf /dev/stderr /var/log/nginx/error.log; \
65
- mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini";
+ mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini"; \
66
+ apk upgrade tar;
67
68
COPY ./src /
69
COPY ./custom_params.ini /usr/local/etc/php/conf.d/docker-php-ext-x-02-custom-params.ini
0 commit comments