3 Commits

5 changed files with 5 additions and 5 deletions

View File

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

View File

@@ -18,7 +18,7 @@ services:
depends_on:
- shlink_db
shlink_db:
image: postgres:18
image: postgres:17
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:18
image: postgres:17
restart: always
volumes:
- ${SPLIIT_POSTGRES_DIR}:/var/lib/postgresql/data

View File

@@ -13,7 +13,7 @@ services:
ports:
- 8071:8080
element-call-livekit:
image: livekit/livekit-server:v1.9.8
image: livekit/livekit-server:v1.9.9
command: --config /etc/livekit.yaml
ports:
- "7880:7880/tcp"

View File

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