1
0
mirror of https://github.com/Kovah/LinkAce.git synced 2025-01-17 13:18:21 +01:00

Update the services used in Docker compose files to the latest versions

This commit is contained in:
Kovah 2022-04-03 22:28:38 +02:00
parent 9d4ef3862a
commit 0090d9920b
No known key found for this signature in database
GPG Key ID: AAAA031BA9830D7B
2 changed files with 6 additions and 6 deletions

View File

@ -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

View File

@ -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}