1 Commits

Author SHA1 Message Date
Renovate Bot
6c855009d6 Update postgres Docker tag to v18 2025-12-18 00:01:57 +00:00
5 changed files with 5 additions and 5 deletions

View File

@@ -13,7 +13,7 @@ services:
# PostgreSQL database service
audiomuse-ai-postgres:
image: postgres:15-alpine
image: postgres:18-alpine
container_name: audiomuse-postgres
env_file:
- .env

View File

@@ -1,7 +1,7 @@
services:
gitea:
container_name: gitea
image: gitea/gitea:1.25.3-rootless
image: gitea/gitea:1.25.2-rootless
restart: always
volumes:
- ${GITEA_DATA_LOCATION}:/var/lib/gitea

View File

@@ -18,7 +18,7 @@ services:
depends_on:
- shlink_db
shlink_db:
image: postgres:17
image: postgres:18
container_name: shlink_db
restart: always
volumes:

View File

@@ -16,7 +16,7 @@ services:
POSTGRES_USER: ${SPLIIT_POSTGRES_USER}
POSTGRES_PASSWORD: ${SPLIIT_POSTGRES_PASSWORD}
spliit_db:
image: postgres:17
image: postgres:18
restart: always
volumes:
- ${SPLIIT_POSTGRES_DIR}:/var/lib/postgresql/data

View File

@@ -1,5 +1,5 @@
# Use the official PHP image with Apache
FROM php:8.5-apache
FROM php:8.4-apache
# Add Docker's official GPG key:
RUN apt-get update &&\