1
0

feat:调整arcadia

This commit is contained in:
okxlin
2024-10-21 22:51:31 +08:00
parent 9549e53d3f
commit e011c231ee
7 changed files with 37 additions and 17 deletions

View File

@@ -0,0 +1,3 @@
CONTAINER_NAME="arcadia"
HOSTNAME="arcadia"
PANEL_APP_PORT_HTTP=40310

View File

@@ -0,0 +1,17 @@
additionalProperties:
formFields:
- default: "40310"
edit: true
envKey: PANEL_APP_PORT_HTTP
labelEn: Port
labelZh: 端口
required: true
rule: paramPort
type: number
- default: "arcadia"
edit: true
envKey: HOSTNAME
labelEn: Hostname
labelZh: 主机名
required: true
type: text

View File

@@ -0,0 +1,22 @@
services:
arcadia:
image: "supermanito/arcadia:beta"
container_name: ${CONTAINER_NAME}
hostname: ${HOSTNAME}
tty: true
networks:
- 1panel-network
volumes:
- ./data/config:/arcadia/config
- ./data/log:/arcadia/log
- ./data/scripts:/arcadia/scripts
- ./data/repo:/arcadia/repo
- ./data/raw:/arcadia/raw
ports:
- "${PANEL_APP_PORT_HTTP}:5678"
restart: always
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true