1
0

feat:添加wallos到列表

This commit is contained in:
okxlin
2024-04-02 15:34:49 +08:00
parent 782924cd27
commit 3a5308e9fb
9 changed files with 125 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
CONTAINER_NAME="wallos"
PANEL_APP_PORT_HTTP="40212"
TIME_ZONE="Asia/Shanghai"

View File

@@ -0,0 +1,16 @@
additionalProperties:
formFields:
- default: 40212
edit: true
envKey: PANEL_APP_PORT_HTTP
labelEn: Port
labelZh: 端口
required: true
rule: paramPort
type: number
- default: Asia/Shanghai
edit: true
envKey: TIME_ZONE
labelEn: Time zone
labelZh: 时区
required: true

View File

@@ -0,0 +1,21 @@
version: '3'
services:
wallos:
container_name: ${CONTAINER_NAME}
restart: always
networks:
- 1panel-network
ports:
- "${PANEL_APP_PORT_HTTP}:80"
volumes:
- ./data/db:/var/www/html/db
- ./data/logos:/var/www/html/images/uploads/logos
environment:
- TZ=${TIME_ZONE}
image: bellamy/wallos:latest
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true