update mariadb 11.5.2

This commit is contained in:
hoangvv 2024-11-02 15:19:57 +07:00
parent fbd8eaf3be
commit 4733c1e774
4 changed files with 38 additions and 0 deletions

View File

@ -7,6 +7,7 @@ https://apps-assets.fit2cloud.com/dev/1panel/mariadb/10.11.9/mariadb-10.11.9.tar
https://apps-assets.fit2cloud.com/dev/1panel/mariadb/11.3.2/mariadb-11.3.2.tar.gz
https://apps-assets.fit2cloud.com/dev/1panel/mariadb/11.4.2/mariadb-11.4.2.tar.gz
https://apps-assets.fit2cloud.com/dev/1panel/mariadb/11.4.3/mariadb-11.4.3.tar.gz
https://apps-assets.fit2cloud.com/dev/1panel/mariadb/11.5.2/mariadb-11.5.2.tar.gz
https://apps-assets.fit2cloud.com/dev/1panel/portainer-ce/2.22.0-alpine/portainer-ce-2.22.0-alpine.tar.gz
portainer-ce-2.21.2-alpine.tar.gz
https://apps-assets.fit2cloud.com/dev/1panel/portainer-ce/2.21.2-alpine/portainer-ce-2.21.2-alpine.tar.gz

View File

@ -0,0 +1,18 @@
additionalProperties:
formFields:
- default: mariadb
envKey: PANEL_DB_ROOT_PASSWORD
labelEn: Root Password
labelZh: root用户密码
random: true
required: true
rule: paramComplexity
type: password
- default: 3306
edit: true
envKey: PANEL_APP_PORT_HTTP
labelEn: Port
labelZh: 端口
required: true
rule: paramPort
type: number

View File

@ -0,0 +1,19 @@
services:
mariadb:
container_name: ${CONTAINER_NAME}
restart: always
networks:
- 1panel-network
image: mariadb:11.5.2
ports:
- ${PANEL_APP_PORT_HTTP}:3306
volumes:
- ./db/data:/var/lib/mysql
- ./conf/my.cnf:/etc/mysql/my.cnf
environment:
MYSQL_ROOT_PASSWORD: ${PANEL_DB_ROOT_PASSWORD}
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true

Binary file not shown.