1
0

feat:添加cook到列表

This commit is contained in:
okxlin
2024-04-29 20:39:55 +08:00
parent 4a195121cc
commit a348377d08
9 changed files with 103 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
CONTAINER_NAME="cook"
PANEL_APP_PORT_HTTP="40228"

10
apps/cook/latest/data.yml Normal file
View File

@@ -0,0 +1,10 @@
additionalProperties:
formFields:
- default: 40228
edit: true
envKey: PANEL_APP_PORT_HTTP
labelEn: Port
labelZh: 端口
required: true
rule: paramPort
type: number

View File

@@ -0,0 +1,17 @@
version: '3'
services:
cook:
image: yunyoujun/cook:latest
container_name: ${CONTAINER_NAME}
restart: always
networks:
- 1panel-network
ports:
- "${PANEL_APP_PORT_HTTP}:80"
tty: true
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true