Processed apps directory via GitHub Actions

This commit is contained in:
QYG2297248353
2024-11-28 09:57:19 +00:00
parent 373a561487
commit 275d5be658
1857 changed files with 56700 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
# 数据持久化路径 [必填]
PERCONA_ROOT_PATH=/home/percona
# 连接端口 [必填]
PANEL_APP_PORT_HTTP=3306
# 管理员密码 [必填]
MYSQL_ROOT_PASSWORD=
+19
View File
@@ -0,0 +1,19 @@
[mysqld]
skip-host-cache
skip-name-resolve
datadir=/var/lib/mysql
socket=/var/run/mysqld/mysqld.sock
secure-file-priv=/var/lib/mysql-files
user=mysql
log_error_suppression_list='MY-013360'
character_set_server=utf8
lower_case_table_names=1
group_concat_max_len=1024000
log_bin_trust_function_creators=1
pid-file=/var/run/mysqld/mysqld.pid
[client]
socket=/var/run/mysqld/mysqld.sock
!includedir /etc/mysql/conf.d/
+26
View File
@@ -0,0 +1,26 @@
networks:
1panel-network:
external: true
services:
percona:
command:
- --default-authentication-plugin=mysql_native_password
container_name: percona
env_file:
- ./envs/global.env
- .env
image: percona:8.0
labels:
createdBy: Apps
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:3306
restart: always
user: ${UID:-1000}:${GID:-1000}
volumes:
- ${PERCONA_ROOT_PATH}/data:/var/lib/mysql
- ${PERCONA_ROOT_PATH}/config/my.cnf:/etc/my.cnf
- ${PERCONA_ROOT_PATH}/log:/var/log/mysql
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
+2
View File
@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
ENV_FILE=.env
+2
View File
@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
TZ=Asia/Shanghai