(refactor) Remove env files and scripts, update config files
This commit is contained in:
6
apps/ikaros-Suwmlee/2.6.1/.env.sample
Normal file
6
apps/ikaros-Suwmlee/2.6.1/.env.sample
Normal file
@@ -0,0 +1,6 @@
|
||||
# 数据持久化路径 [必填]
|
||||
IKAROS_ROOT_PATH=/home/ikaros
|
||||
|
||||
# WebUI 端口 [必填]
|
||||
PANEL_APP_PORT_HTTP=12346
|
||||
|
||||
17
apps/ikaros-Suwmlee/2.6.1/data.yml
Normal file
17
apps/ikaros-Suwmlee/2.6.1/data.yml
Normal file
@@ -0,0 +1,17 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- default: "./data"
|
||||
edit: true
|
||||
envKey: IKAROS_ROOT_PATH
|
||||
labelZh: 数据持久化路径
|
||||
labelEn: Data persistence path
|
||||
required: true
|
||||
type: text
|
||||
- default: 12346
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_HTTP
|
||||
labelZh: WebUI 端口
|
||||
labelEn: WebUI port
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
22
apps/ikaros-Suwmlee/2.6.1/docker-compose.yml
Normal file
22
apps/ikaros-Suwmlee/2.6.1/docker-compose.yml
Normal file
@@ -0,0 +1,22 @@
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
|
||||
services:
|
||||
ikaros:
|
||||
image: suwmlee/ikaros:2.6.1
|
||||
container_name: ${CONTAINER_NAME}
|
||||
labels:
|
||||
createdBy: "Apps"
|
||||
restart: always
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- ${PANEL_APP_PORT_HTTP}:12346
|
||||
volumes:
|
||||
- ${IKAROS_ROOT_PATH}/media:/media
|
||||
- ${IKAROS_ROOT_PATH}/data:/app/data
|
||||
environment:
|
||||
- PUID=0
|
||||
- PGID=0
|
||||
- TZ=Asia/Shanghai
|
||||
Reference in New Issue
Block a user