Processed apps directory via GitHub Actions

This commit is contained in:
QYG2297248353
2026-04-22 05:28:34 +00:00
parent 2ca236ba57
commit 6f2b830406
155 changed files with 796 additions and 796 deletions
-9
View File
@@ -1,9 +0,0 @@
# 数据持久化路径 [必填]
MYSQL_ROOT_PATH=/home/mysql
# 连接端口 [必填]
PANEL_APP_PORT_HTTP=3306
# 管理员密码 [必填]
MYSQL_ROOT_PASSWORD=
-42
View File
@@ -1,42 +0,0 @@
# For advice on how to change settings please see
# http://dev.mysql.com/doc/refman/5.7/en/server-configuration-defaults.html
[mysqld]
#
# Remove leading # and set to the amount of RAM for the most important data
# cache in MySQL. Start at 70% of total RAM for dedicated server, else 10%.
# innodb_buffer_pool_size = 128M
#
# Remove leading # to turn on a very important data integrity option: logging
# changes to the binary log between backups.
# log_bin
#
# Remove leading # to set options mainly useful for reporting servers.
# The server defaults are faster for transactions and fast SELECTs.
# Adjust sizes as needed, experiment to find the optimal values.
# join_buffer_size = 128M
# sort_buffer_size = 2M
# read_rnd_buffer_size = 2M
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
# Disabling symbolic-links is recommended to prevent assorted security risks
symbolic-links=0
#log-error=/var/log/mysqld.log
pid-file=/var/run/mysqld/mysqld.pid
max_allowed_packet=64M
character_set_server=utf8mb4
lower_case_table_names=1
group_concat_max_len=1024000
[client]
socket=/var/run/mysqld/mysqld.sock
!includedir /etc/mysql/conf.d/
!includedir /etc/mysql/mysql.conf.d/
-29
View File
@@ -1,29 +0,0 @@
networks:
1panel-network:
external: true
services:
mysql:
command:
- --character-set-server=utf8mb4
- --lower_case_table_names=1
- --collation-server=utf8mb4_general_ci
- --explicit_defaults_for_timestamp=true
container_name: mysql
env_file:
- ./envs/global.env
- .env
image: mysql:5.7.44
labels:
createdBy: Apps
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:3306
restart: always
user: 1000:1000
volumes:
- ${MYSQL_ROOT_PATH}/data/:/var/lib/mysql
- ${MYSQL_ROOT_PATH}/config/my.cnf:/etc/mysql/my.cnf
- ${MYSQL_ROOT_PATH}/log:/var/log/mysql
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
-2
View File
@@ -1,2 +0,0 @@
# copyright© 2024 XinJiang Ms Studio
ENV_FILE=.env
-2
View File
@@ -1,2 +0,0 @@
# copyright© 2024 XinJiang Ms Studio
TZ=Asia/Shanghai