mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2025-02-02 20:57:58 +08:00
Processed apps directory via GitHub Actions
This commit is contained in:
parent
cb28a14e1b
commit
e53d98393b
@ -14,7 +14,7 @@ services:
|
||||
- verificationCodeTimeout=10
|
||||
- appname=casdoor
|
||||
- authState=casdoor
|
||||
image: casbin/casdoor:v1.807.0
|
||||
image: casbin/casdoor:v1.808.0
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
@ -9,7 +9,7 @@ services:
|
||||
- .env
|
||||
environment:
|
||||
- PORT=1188
|
||||
image: qyg2297248353/deeplx:v1.0.1.0
|
||||
image: qyg2297248353/deeplx:v1.0.2.1
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
@ -19,7 +19,7 @@ services:
|
||||
- NEXT_PUBLIC_CustomLogo=https://nezha-cf.buycoffee.top/apple-touch-icon.png
|
||||
- NEXT_PUBLIC_CustomTitle=NezhaDash
|
||||
- NEXT_PUBLIC_CustomDescription=NezhaDash is a dashboard for Nezha.
|
||||
image: hamster1963/nezha-dash:v2.2.0
|
||||
image: hamster1963/nezha-dash:v2.3.0
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
@ -3,13 +3,13 @@ networks:
|
||||
external: true
|
||||
services:
|
||||
nodebb:
|
||||
container_name: nodebb
|
||||
container_name: 4.0.0
|
||||
env_file:
|
||||
- ./envs/global.env
|
||||
- .env
|
||||
environment:
|
||||
- TZ=Asia/Shanghai
|
||||
image: ghcr.io/nodebb/nodebb:3.12.4
|
||||
image: ghcr.io/nodebb/nodebb:4.0.0
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
@ -3,13 +3,13 @@ networks:
|
||||
external: true
|
||||
services:
|
||||
nodebb:
|
||||
container_name: nodebb
|
||||
container_name: 4.0.0
|
||||
env_file:
|
||||
- ./envs/global.env
|
||||
- .env
|
||||
environment:
|
||||
- TZ=Asia/Shanghai
|
||||
image: ghcr.io/nodebb/nodebb:3.12.4
|
||||
image: ghcr.io/nodebb/nodebb:4.0.0
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
@ -14,7 +14,7 @@ services:
|
||||
- verificationCodeTimeout=10
|
||||
- appname=casdoor
|
||||
- authState=casdoor
|
||||
image: casbin/casdoor:v1.807.0
|
||||
image: casbin/casdoor:v1.808.0
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
|
@ -9,7 +9,7 @@ services:
|
||||
- .env
|
||||
environment:
|
||||
- PORT=1188
|
||||
image: qyg2297248353/deeplx:v1.0.1.0
|
||||
image: qyg2297248353/deeplx:v1.0.2.1
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
|
@ -19,7 +19,7 @@ services:
|
||||
- NEXT_PUBLIC_CustomLogo=https://nezha-cf.buycoffee.top/apple-touch-icon.png
|
||||
- NEXT_PUBLIC_CustomTitle=NezhaDash
|
||||
- NEXT_PUBLIC_CustomDescription=NezhaDash is a dashboard for Nezha.
|
||||
image: hamster1963/nezha-dash:v2.2.0
|
||||
image: hamster1963/nezha-dash:v2.3.0
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
|
11
dockge/nodebb/3.12.4/conf/setup.json
Normal file
11
dockge/nodebb/3.12.4/conf/setup.json
Normal file
@ -0,0 +1,11 @@
|
||||
{
|
||||
"defaults": {
|
||||
"$NODEBB_DB": {
|
||||
"host": "$NODEBB_DB_HOST",
|
||||
"port": $NODEBB_DB_PORT,
|
||||
"database": "$NODEBB_DB_NAME",
|
||||
"username": "$NODEBB_DB_USER",
|
||||
"password": "$NODEBB_DB_PASSWORD"
|
||||
}
|
||||
}
|
||||
}
|
26
dockge/nodebb/3.12.4/docker-compose.yml
Normal file
26
dockge/nodebb/3.12.4/docker-compose.yml
Normal file
@ -0,0 +1,26 @@
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
|
||||
services:
|
||||
nodebb:
|
||||
image: ghcr.io/nodebb/nodebb:4.0.0
|
||||
container_name: ${CONTAINER_NAME}
|
||||
labels:
|
||||
createdBy: "Apps"
|
||||
restart: always
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- ${PANEL_APP_PORT_HTTP}:4567
|
||||
env_file:
|
||||
- ${GLOBAL_ENV_FILE:-/etc/1panel/envs/global.env}
|
||||
- ${ENV_FILE:-/etc/1panel/envs/default.env}
|
||||
volumes:
|
||||
- ${NODEBB_ROOT_PATH}/node_modules:/usr/src/app/node_modules
|
||||
- ${NODEBB_ROOT_PATH}/build:/usr/src/app/build
|
||||
- ${NODEBB_ROOT_PATH}/uploads:/usr/src/app/public/uploads
|
||||
- ${NODEBB_ROOT_PATH}/config:/opt/config
|
||||
- ${NODEBB_ROOT_PATH}/setup.json:/usr/src/app/setup.json
|
||||
environment:
|
||||
- TZ=Asia/Shanghai
|
2
dockge/nodebb/3.12.4/envs/default.env
Normal file
2
dockge/nodebb/3.12.4/envs/default.env
Normal file
@ -0,0 +1,2 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
ENV_FILE=.env
|
2
dockge/nodebb/3.12.4/envs/global.env
Normal file
2
dockge/nodebb/3.12.4/envs/global.env
Normal file
@ -0,0 +1,2 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
TZ=Asia/Shanghai
|
Loading…
x
Reference in New Issue
Block a user