Skip to content

Commit c00afd6

Browse files
committed
closes #277 and closes #279
1 parent 9353b9c commit c00afd6

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

Dockerfile

+4-2
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,10 @@ RUN echo @testing https://dl-cdn.alpinelinux.org/alpine/edge/testing >> /etc/apk
3939
libzip-dev \
4040
bzip2-dev \
4141
icu-dev \
42-
gcc && \
43-
apk add --no-cache --virtual .sys-deps \
42+
tzdata \
43+
gcc
44+
45+
RUN apk add --no-cache --virtual .sys-deps \
4446
musl-dev \
4547
linux-headers \
4648
augeas-dev \

docs/versioning.md

+4-5
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,14 @@ The latest tag will always follow the master branch in git. the other versions w
2020
| 3.0.1 | 8.2.3 |1.22.1 | 3.17 | 0.3.16 | no cache typo fixed |
2121
| 3.0.0 | 8.2.3 |1.22.1 | 3.17 | 0.3.16 | upgraded php to 8.2.3 switched to packaged nginx |
2222

23+
These tags will be created on GitHub and as tags in docker hub.
24+
25+
### Unmaintained tags:
26+
2327
#### PHP 8.1.x
2428

2529
| Docker Tag | PHP Version | Nginx Version | Alpine Version | Container Scripts | Notes |
2630
|-----|-------|-----|--------|--------|----------|
27-
| 2.2.1 | 8.1.12 |1.22.1 | 3.16 | 0.3.16 | nginx upgraded to 1.22.1 php to 8.1.12 |
2831
| 2.1.4 | 8.1.9 |1.21.6 | 3.16 | 0.3.16 | nginx upgraded to 1.22.0 |
2932
| 2.1.3 | 8.1.6 |1.22.0 | 3.15 | 0.3.16 | nginx upgraded to 1.22.0 |
3033
| 2.1.2 | 8.1.6 |1.21.6 | 3.15 | 0.3.16 | mod lua upgraded to 0.10.17 |
@@ -39,10 +42,6 @@ The latest tag will always follow the master branch in git. the other versions w
3942
| 2.0.1 | 8.1.3 |1.21.6 | 3.15 | 0.3.14 | upgrade to PHP 8.1.3 |
4043
| 2.0.0 | 8.1.2 |1.21.6 | 3.15 | 0.3.14 | upgrade to PHP 8 |
4144

42-
These tags will be created on GitHub and as tags in docker hub.
43-
44-
### Unmaintained tags:
45-
4645
#### PHP 7.4
4746

4847
| Docker Tag | PHP Version | Nginx Version | Alpine Version | Container Scripts | Notes |

scripts/start.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ if [ -f /etc/nginx/sites-available/default-ssl.conf ]; then
134134
fi
135135

136136
# Set the desired timezone
137-
echo date.timezone=$(cat /etc/TZ) > /usr/local/etc/php/conf.d/timezone.ini
137+
echo date.timezone=Europe/London > /usr/local/etc/php/conf.d/timezone.ini
138138

139139
# Display errors in docker logs
140140
if [ ! -z "$PHP_ERRORS_STDERR" ]; then

0 commit comments

Comments
 (0)