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,42 @@
|
||||
# MySQL 服务 (前置检查) [必填]
|
||||
PANEL_DB_TYPE=mysql
|
||||
|
||||
# Redis 服务 (前置检查) [必填]
|
||||
PANEL_REDIS_TYPE=redis
|
||||
|
||||
# WebUI 端口 [必填]
|
||||
PANEL_APP_PORT_HTTP=1898
|
||||
|
||||
# 管理员 用户名 [必填]
|
||||
ADMIN_USERNAME=admin
|
||||
|
||||
# 管理员 密码 [必填]
|
||||
topiam.cn=topiam.cn
|
||||
|
||||
# 数据库 主机 [必填]
|
||||
DB_HOST=127.0.0.1
|
||||
|
||||
# 数据库 端口 [必填]
|
||||
DB_PORT=3306
|
||||
|
||||
# 数据库 用户名 [必填]
|
||||
DB_USER=topiam
|
||||
|
||||
# 数据库 密码 [必填]
|
||||
DB_USER_PASSWORD=
|
||||
|
||||
# 数据库 名称 [必填]
|
||||
DB_NAME=topiam
|
||||
|
||||
# Redis 主机 [必填]
|
||||
REDIS_HOSTNAME=127.0.0.1
|
||||
|
||||
# Redis 端口 [必填]
|
||||
REDIS_PORT=6379
|
||||
|
||||
# Redis 索引 [必填]
|
||||
REDIS_DBINDEX=0
|
||||
|
||||
# Redis 密码
|
||||
REDIS_PASSWORD=
|
||||
|
||||
@@ -0,0 +1,29 @@
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
services:
|
||||
topiam-ce:
|
||||
container_name: topiam-ce
|
||||
env_file:
|
||||
- ./envs/global.env
|
||||
- .env
|
||||
environment:
|
||||
- INITIAL_PASSWORD_VALUE=ADMIN_PASSWORD
|
||||
- spring.datasource.url=jdbc:mysql://${DB_HOST}:${DB_PORT}/${DB_NAME}?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=UTF-8&autoReconnect=true&useSSL=false&allowPublicKeyRetrieval=true&rewriteBatchedStatements=true
|
||||
- spring.datasource.username=${DB_USER}
|
||||
- spring.datasource.password=${DB_USER_PASSWORD}
|
||||
- spring.data.redis.host=${REDIS_HOSTNAME}
|
||||
- spring.data.redis.port=${REDIS_PORT}
|
||||
- spring.data.redis.password=${REDIS_PASSWORD}
|
||||
- spring.data.redis.database=${REDIS_DBINDEX}
|
||||
image: registry.cn-hangzhou.aliyuncs.com/topiam/topiam-ce:2.0.0
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- ${PANEL_APP_PORT_HTTP}:1898
|
||||
restart: always
|
||||
volumes:
|
||||
- ${TOPIAM_CE_ROOT_PATH}/conf:/opt/topiam/conf
|
||||
- ${TOPIAM_CE_ROOT_PATH}/logs:/opt/topiam/logs
|
||||
Reference in New Issue
Block a user