You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Dockerfile
+5-2Lines changed: 5 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,12 @@
1
1
ARG DISTRO=alpine
2
-
ARG DISTRO_VARIANT=3.17
2
+
ARG DISTRO_VARIANT=edge
3
3
4
4
FROM docker.io/tiredofit/nginx:${DISTRO}-${DISTRO_VARIANT}
5
5
LABEL maintainer="Dave Conroy (dave at tiredofit dot ca)"
6
6
7
7
ARG PHP_BASE
8
8
9
-
ENV PHP_BASE=${PHP_BASE:-"8.1"} \
9
+
ENV PHP_BASE=${PHP_BASE:-"8.2"} \
10
10
PHP_ENABLE_APCU=TRUE \
11
11
PHP_ENABLE_BCMATH=TRUE \
12
12
PHP_ENABLE_BZ2=TRUE \
@@ -813,8 +813,11 @@ RUN case "${PHP_BASE}" in \
813
813
#### Disabling any but core extensions - When using this image as a base for other images, you'll want to turn turn them on before running composer with the inverse of phpdisomd (phpenmod) to keep things clean
814
814
set +x && \
815
815
for module in /etc/php${php_folder}/conf.d/*.ini; do if [ ! -L "${module}" ] ; then if [ "$(echo $(basename $module) | grep -c '^[0-9][0-9].*')" = "0" ] ; then mv "${module}""$(dirname ${module})/20_$(basename ${module})" ; module="$(dirname ${module})/20_$(basename ${module})"; fi ; if ! grep -w -i -q ";priority""$module"; then echo ";priority=$(basename $module .ini | cut -d _ -f1)" >> $module ; mv "${module}" /etc/php${php_folder}/mods-available/$(basename ${module} .ini | cut -c 4-).ini; fi; fi; done; \
816
+
816
817
rm -rf /etc/php${php_folder}/conf.d/* && \
818
+
sed -i "s|;priority=00|;priority=10|g" /etc/php${php_folder}/mods-available/opcache.ini && \
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -165,7 +165,7 @@ The following directories are used for configuration and can be mapped for persi
165
165
166
166
#### Base Images used
167
167
168
-
This image relies on an [Alpine Linux](https://hub.docker.com/r/tiredofit/alpine) or [Debian Linux](https://hub.docker.com/r/tiredofit/debian) base image that relies on an [init system](https://github.com/just-containers/s6-overlay) for added capabilities. Outgoing SMTP capabilities are handlded via `msmtp`. Individual container performance monitoring is performed by [zabbix-agent](https://zabbix.org). Additional tools include: `bash`,`curl`,`less`,`logrotate`, `nano`,`vim`.
168
+
This image relies on an [Alpine Linux](https://hub.docker.com/r/tiredofit/alpine) or [Debian Linux](https://hub.docker.com/r/tiredofit/debian) base image that relies on an [init system](https://github.com/just-containers/s6-overlay) for added capabilities. Outgoing SMTP capabilities are handlded via `msmtp`. Individual container performance monitoring is performed by [zabbix-agent](https://zabbix.org). Additional tools include: `bash`,`curl`,`less`,`logrotate`, `nano`.
169
169
Be sure to view the following repositories to understand all the customizable options:
0 commit comments