building 22.1 images with PHP 8.1 on base of Ubuntu 22.04 and MariaDB 10.6

This commit is contained in:
ralf 2022-09-20 13:44:54 +02:00
parent 67f41f8041
commit 7072f96244
2 changed files with 5 additions and 4 deletions

View File

@ -53,7 +53,7 @@ volumes:
device: $PWD/data/default/rocketchat/uploads
services:
egroupware:
image: egroupware/egroupware:20.1
image: egroupware/egroupware:22.1
# EPL image: download.egroupware.org/egroupware/epl:20.1
# setting a default language for a new installation
#environment:
@ -139,10 +139,11 @@ services:
# run an own MariaDB:10.4 (you can use EGroupware's database backup and restore to add your existing database)
db:
image: mariadb
image: mariadb:10.6
environment:
#- MYSQL_ROOT=root
- MYSQL_ROOT_PASSWORD=secret
- MARIADB_AUTO_UPGRADE=true
volumes:
- db:/var/lib/mysql
container_name: egroupware-db

View File

@ -3,11 +3,11 @@
## EGroupware FPM container using Ubuntu 18.04 and PHP 7.3 from ondrej/php PPA
##
################################################################################
FROM ubuntu:20.04
FROM ubuntu:22.04
MAINTAINER rb@egroupware.org
ARG VERSION=dev-master
ARG PHP_VERSION=7.4
ARG PHP_VERSION=8.1
# keeping build-arg in environment for entrypoint.sh
ENV VERSION=$VERSION