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:
@@ -0,0 +1,48 @@
|
||||
# MySQL 服务 (前置检查) [必填]
|
||||
PANEL_DB_TYPE=mysql
|
||||
|
||||
# 数据持久化路径 [必填]
|
||||
GHOST_ROOT_PATH=/home/ghost
|
||||
|
||||
# WebUI 端口 [必填]
|
||||
PANEL_APP_PORT_HTTP=2368
|
||||
|
||||
# 域名 [必填]
|
||||
url=http://127.0.0.1:2368
|
||||
|
||||
# 域名 (后台) [必填]
|
||||
admin__url=http://127.0.0.1:2368
|
||||
|
||||
# 数据库 主机 [必填]
|
||||
database__connection__host=127.0.0.1
|
||||
|
||||
# 数据库 端口 [必填]
|
||||
database__connection__port=3306
|
||||
|
||||
# 数据库 用户名 [必填]
|
||||
database__connection__user=ghost
|
||||
|
||||
# 数据库 密码 [必填]
|
||||
database__connection__password=
|
||||
|
||||
# 数据库 名称 [必填]
|
||||
database__connection__database=ghost
|
||||
|
||||
# 邮件传输协议 [必填]
|
||||
mail__transport=SMTP
|
||||
|
||||
# 邮件服务器 [必填]
|
||||
mail__options__host=smtp.qq.com
|
||||
|
||||
# 邮件服务器 端口 [必填]
|
||||
mail__options__port=465
|
||||
|
||||
# 邮件鉴权 用户名 [必填]
|
||||
mail__options__auth__user=
|
||||
|
||||
# 邮件鉴权 密码 [必填]
|
||||
mail__options__auth__pass=
|
||||
|
||||
# 邮件发送者 [必填]
|
||||
mail__from=
|
||||
|
||||
@@ -0,0 +1,26 @@
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
services:
|
||||
ghost:
|
||||
container_name: ghost
|
||||
env_file:
|
||||
- ./envs/global.env
|
||||
- .env
|
||||
environment:
|
||||
- NODE_ENV=production
|
||||
- server__host=0.0.0.0
|
||||
- server__port=2368
|
||||
- database__client=mysql
|
||||
- mail__options__service=Email
|
||||
- mail__options__secure=true
|
||||
image: ghost:5.101.4
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- ${PANEL_APP_PORT_HTTP}:2368
|
||||
restart: always
|
||||
volumes:
|
||||
- ${GHOST_ROOT_PATH}/data:/var/lib/ghost/content
|
||||
@@ -0,0 +1,2 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
ENV_FILE=.env
|
||||
@@ -0,0 +1,2 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
TZ=Asia/Shanghai
|
||||
Reference in New Issue
Block a user