From 0090d9920b9ec93460775d6a03fce7641056d674 Mon Sep 17 00:00:00 2001 From: Kovah Date: Sun, 3 Apr 2022 22:28:38 +0200 Subject: [PATCH] Update the services used in Docker compose files to the latest versions --- docker-compose.production-simple.yml | 4 ++-- docker-compose.production.yml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docker-compose.production-simple.yml b/docker-compose.production-simple.yml index 696a9f91..0d97666e 100644 --- a/docker-compose.production-simple.yml +++ b/docker-compose.production-simple.yml @@ -4,7 +4,7 @@ services: # --- MariaDB db: - image: mariadb:10.5 + image: mariadb:10.7 restart: unless-stopped command: mysqld --character-set-server=utf8mb4 --collation-server=utf8mb4_bin environment: @@ -15,7 +15,7 @@ services: volumes: - db:/var/lib/mysql - # --- LinkAce Image with PHP 7.4 and nginx + # --- LinkAce Image with PHP and nginx app: image: linkace/linkace:simple restart: unless-stopped diff --git a/docker-compose.production.yml b/docker-compose.production.yml index 1acecc44..094a77ad 100644 --- a/docker-compose.production.yml +++ b/docker-compose.production.yml @@ -4,7 +4,7 @@ services: # --- MariaDB db: - image: mariadb:10.5 + image: mariadb:10.7 restart: unless-stopped command: mysqld --character-set-server=utf8mb4 --collation-server=utf8mb4_bin environment: @@ -15,7 +15,7 @@ services: volumes: - db:/var/lib/mysql - # --- LinkAce Image with PHP 7.4 + # --- LinkAce Image with PHP app: image: linkace/linkace:latest restart: unless-stopped @@ -30,7 +30,7 @@ services: # --- nginx nginx: - image: bitnami/nginx:1.19 + image: bitnami/nginx:1.21 restart: unless-stopped ports: - "0.0.0.0:80:8080" @@ -46,7 +46,7 @@ services: # --- Redis redis: - image: bitnami/redis:6.0 + image: bitnami/redis:6.2 restart: unless-stopped environment: - REDIS_PASSWORD=${REDIS_PASSWORD}