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.
2 parents 53b43b1 + bf71745 commit 55b52c4Copy full SHA for 55b52c4
3 files changed
.github/workflows/docker.build.yml
@@ -29,7 +29,7 @@ jobs:
29
uses: docker/setup-buildx-action@v1.6.0
30
-
31
name: Cache Docker layers
32
- uses: actions/cache@v2.1.6
+ uses: actions/cache@v4
33
with:
34
path: /tmp/.buildx-cache
35
key: ${{ runner.os }}-buildx-${{ github.sha }}
CHANGELOG.md
@@ -1,5 +1,9 @@
1
# widar
2
3
+## March 2025
4
+- 1.4
5
+ - Install extra tls CA cert if it exists
6
+
7
## Feburary 2022
8
- 1.3 - Update OAuth consumer version in magnustools
9
docker/entrypoint.sh
@@ -1,3 +1,8 @@
#!/usr/bin/env bash
+if [ -r '/usr/share/ca-certificates/extra/ca.crt' ]; then
+ echo 'extra/ca.crt' >> /etc/ca-certificates.conf
+ update-ca-certificates
+fi
docker-php-entrypoint apache2-foreground
0 commit comments