Skip to content

Commit b1fa655

Browse files
author
GitHub Workflow
committed
Repo-sync
1 parent a9932c3 commit b1fa655

File tree

61 files changed

+446
-79
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+446
-79
lines changed

Containers/apache/Caddyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ https://{$ADDITIONAL_TRUSTED_DOMAIN}:443,
4040
route /onlyoffice/* {
4141
uri strip_prefix /onlyoffice
4242
reverse_proxy {$ONLYOFFICE_HOST}:80 {
43-
header_up X-Forwarded-Host {http.request.host}/onlyoffice
43+
header_up X-Forwarded-Host {http.request.hostport}/onlyoffice
4444
header_up X-Forwarded-Proto https
4545
}
4646
}

Containers/apache/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
FROM caddy:2.9.1-alpine AS caddy
33

44
# From https://github.com/docker-library/httpd/blob/master/2.4/alpine/Dockerfile
5-
FROM httpd:2.4.62-alpine3.21
5+
FROM httpd:2.4.63-alpine3.21
66

77
COPY --from=caddy /usr/bin/caddy /usr/bin/caddy
88

Containers/borgbackup/backupscript.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -521,7 +521,7 @@ if [ "$BORG_MODE" = check ]; then
521521
# Perform the check
522522
if ! borg check -v --verify-data; then
523523
echo "Some errors were found while checking the backup integrity!"
524-
echo "Check the AIO interface for advices on how to proceed now!"
524+
echo "Check the AIO interface for advice on how to proceed now!"
525525
exit 1
526526
fi
527527

Containers/clamav/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:latest
22
# Probably from this file: https://github.com/Cisco-Talos/clamav-docker/blob/main/clamav/1.3/alpine/Dockerfile
3-
FROM clamav/clamav:1.4.1-21
3+
FROM clamav/clamav:1.4.2-24
44

55
COPY clamav.conf /clamav.conf
66
COPY --chmod=775 start.script /start.script

Containers/collabora/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:latest
22
# From a file located probably somewhere here: https://github.com/CollaboraOnline/online/tree/master/docker
3-
FROM collabora/code:24.04.11.2.1
3+
FROM collabora/code:24.04.12.1.1
44

55
USER root
66
ARG DEBIAN_FRONTEND=noninteractive

Containers/fulltextsearch/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:latest
22
# Probably from here https://github.com/elastic/elasticsearch/blob/main/distribution/docker/src/docker/Dockerfile
3-
FROM elasticsearch:8.17.0
3+
FROM elasticsearch:8.17.1
44

55
USER root
66

Containers/imaginary/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# syntax=docker/dockerfile:latest
2-
FROM golang:1.23.4-alpine3.21 AS go
2+
FROM golang:1.23.5-alpine3.21 AS go
33

44
ENV IMAGINARY_HASH=1d4e251cfcd58ea66f8361f8721d7b8cc85002a3
55

Containers/mastercontainer/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# syntax=docker/dockerfile:latest
22
# Docker CLI is a requirement
3-
FROM docker:27.5.0-cli AS docker
3+
FROM docker:27.5.1-cli AS docker
44

55
# Caddy is a requirement
66
FROM caddy:2.9.1-alpine AS caddy
77

88
# From https://github.com/docker-library/php/blob/master/8.3/alpine3.21/fpm/Dockerfile
9-
FROM php:8.3.15-fpm-alpine3.21
9+
FROM php:8.3.16-fpm-alpine3.21
1010

1111
EXPOSE 80
1212
EXPOSE 8080

Containers/mastercontainer/start.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ fi
285285

286286
# Check if auth.docker.io is reachable
287287
# Solves issues like https://github.com/nextcloud/all-in-one/discussions/5268
288-
if ! curl https://auth.docker.io/token | grep -q token; then
288+
if ! curl https://auth.docker.io/token 2>&1 | grep -q token; then
289289
print_red "Could not reach https://auth.docker.io."
290290
echo "Most likely is something blocking access to it."
291291
echo "You should be able to fix this by using https://github.com/nextcloud/all-in-one/tree/main/manual-install"

Containers/nextcloud/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# syntax=docker/dockerfile:latest
2-
FROM php:8.3.15-fpm-alpine3.21
2+
FROM php:8.3.16-fpm-alpine3.21
33

44
ENV PHP_MEMORY_LIMIT=512M
55
ENV PHP_UPLOAD_LIMIT=16G

0 commit comments

Comments
 (0)