bump(nextcloud): 28

This commit is contained in:
ange 2024-07-03 16:16:50 +02:00
parent 8df7e7949e
commit bdee405515
Signed by: ange
GPG Key ID: 9E0C4157BB7BEB1D
2 changed files with 8 additions and 9 deletions

View File

@ -1,4 +1,4 @@
FROM docker.io/nextcloud:27-apache
FROM docker.io/nextcloud:28-apache
COPY config/ /usr/src/nextcloud/config/
COPY entrypoint.sh /usr/local/bin/
ENTRYPOINT ["entrypoint.sh"]

View File

@ -14,7 +14,7 @@ services:
- /var/run/docker.sock:/var/run/docker.sock
db:
image: docker.io/postgres:15
image: docker.io/postgres:16
restart: unless-stopped
environment:
- POSTGRES_DB
@ -23,11 +23,11 @@ services:
volumes:
- db:/var/lib/postgresql/data/
redis:
image: docker.io/redis:latest
valkey:
image: docker.io/valkey/valkey:latest
restart: unless-stopped
volumes:
- redis:/data/
tmpfs:
- /data/
nextcloud:
build: .
@ -36,7 +36,7 @@ services:
- .env
environment:
- POSTGRES_HOST=db
- REDIS_HOST=redis
- REDIS_HOST=valkey
- TRUSTED_PROXIES=nextcloud
- OVERWRITEPROTOCOL=https
- PHP_UPLOAD_LIMIT=$UPLOAD_LIMIT
@ -52,7 +52,7 @@ services:
- default
depends_on:
- db
- redis
- valkey
volumes:
sites:
@ -62,7 +62,6 @@ volumes:
certbotroot:
external: true
db: {}
redis: {}
nextcloud: {}
apps: {}
config: {}