mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2026-06-16 01:02:14 +08:00
Processed apps directory via GitHub Actions
This commit is contained in:
@@ -28,7 +28,7 @@ services:
|
||||
- GITEA__webhook__PROXY_HOSTS=${PROXY_HOSTS}
|
||||
- GITEA__git.config__http.proxy=${PROXY_URL}
|
||||
- GITEA__git.config__https.proxy=${PROXY_URL}
|
||||
image: gitea/gitea:1.25.3
|
||||
image: gitea/gitea:1.25.4
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
@@ -11,7 +11,7 @@ services:
|
||||
env_file:
|
||||
- ./envs/global.env
|
||||
- .env
|
||||
image: mysql:8.4.7
|
||||
image: mysql:8.4.8
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
@@ -28,7 +28,7 @@ services:
|
||||
- GITEA__webhook__PROXY_HOSTS=${PROXY_HOSTS}
|
||||
- GITEA__git.config__http.proxy=${PROXY_URL}
|
||||
- GITEA__git.config__https.proxy=${PROXY_URL}
|
||||
image: gitea/gitea:1.25.3
|
||||
image: gitea/gitea:1.25.4
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
|
||||
@@ -1,20 +1,42 @@
|
||||
# For advice on how to change settings please see
|
||||
# http://dev.mysql.com/doc/refman/5.7/en/server-configuration-defaults.html
|
||||
|
||||
[mysqld]
|
||||
host_cache_size=0
|
||||
#
|
||||
# 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
|
||||
|
||||
mysql_native_password=ON
|
||||
# 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
|
||||
collation_server=utf8mb4_unicode_ci
|
||||
lower_case_table_names=1
|
||||
group_concat_max_len=1024000
|
||||
log_bin_trust_function_creators=1
|
||||
|
||||
secure_file_priv=
|
||||
pid_file=/var/run/mysqld/mysqld.pid
|
||||
[client]
|
||||
socket=/var/run/mysqld/mysqld.sock
|
||||
|
||||
!includedir /etc/mysql/conf.d/
|
||||
!includedir /etc/mysql/mysql.conf.d/
|
||||
|
||||
@@ -5,13 +5,14 @@ services:
|
||||
mysql:
|
||||
command:
|
||||
- --character-set-server=utf8mb4
|
||||
- --collation-server=utf8mb4_unicode_ci
|
||||
- --mysql-native-password=ON
|
||||
- --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:8.4.7
|
||||
image: mysql:5.7.44
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
@@ -21,8 +22,8 @@ services:
|
||||
restart: always
|
||||
user: 1000:1000
|
||||
volumes:
|
||||
- ${MYSQL_ROOT_PATH}/data:/var/lib/mysql
|
||||
- ${MYSQL_ROOT_PATH}/config/my.cnf:/etc/my.cnf
|
||||
- ${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
|
||||
|
||||
@@ -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/
|
||||
@@ -0,0 +1,20 @@
|
||||
[mysqld]
|
||||
host_cache_size=0
|
||||
skip-name-resolve
|
||||
datadir=/var/lib/mysql
|
||||
socket=/var/run/mysqld/mysqld.sock
|
||||
user=mysql
|
||||
|
||||
mysql_native_password=ON
|
||||
character_set_server=utf8mb4
|
||||
collation_server=utf8mb4_unicode_ci
|
||||
lower_case_table_names=1
|
||||
group_concat_max_len=1024000
|
||||
log_bin_trust_function_creators=1
|
||||
|
||||
secure_file_priv=
|
||||
pid_file=/var/run/mysqld/mysqld.pid
|
||||
[client]
|
||||
socket=/var/run/mysqld/mysqld.sock
|
||||
|
||||
!includedir /etc/mysql/conf.d/
|
||||
@@ -5,14 +5,13 @@ services:
|
||||
mysql:
|
||||
command:
|
||||
- --character-set-server=utf8mb4
|
||||
- --lower_case_table_names=1
|
||||
- --collation-server=utf8mb4_general_ci
|
||||
- --explicit_defaults_for_timestamp=true
|
||||
- --collation-server=utf8mb4_unicode_ci
|
||||
- --mysql-native-password=ON
|
||||
container_name: mysql
|
||||
env_file:
|
||||
- ./envs/global.env
|
||||
- .env
|
||||
image: mysql:5.7.44
|
||||
image: mysql:8.4.8
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
@@ -22,8 +21,8 @@ services:
|
||||
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}/data:/var/lib/mysql
|
||||
- ${MYSQL_ROOT_PATH}/config/my.cnf:/etc/my.cnf
|
||||
- ${MYSQL_ROOT_PATH}/log:/var/log/mysql
|
||||
- /etc/timezone:/etc/timezone:ro
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
Reference in New Issue
Block a user