diff --git a/apps/arcane/0.15.1/data.yml b/apps/arcane/0.15.1/data.yml new file mode 100644 index 0000000..f666c4f --- /dev/null +++ b/apps/arcane/0.15.1/data.yml @@ -0,0 +1,35 @@ +additionalProperties: + formFields: + - default: 3000 + edit: true + envKey: PANEL_APP_PORT_HTTP + labelEn: Web UI Port + labelZh: Web界面端口 + required: true + rule: paramPort + type: number + label: + en: Web UI Port + ja: Web UI ポート + ms: Port UI Web + pt-br: Porta da interface web + ru: Веб-порт интерфейса + ko: 웹 UI 포트 + zh-Hant: Web UI 埠 + zh: Web界面端口 + - default: "arcane-session-4e2b8c7f9d1a6e3b2c5d7f8a1b0c9e6d" + edit: true + envKey: PUBLIC_SESSION_SECRET + labelEn: Session Secret + labelZh: 会话密钥 + required: true + type: text + label: + en: Session Secret + ja: セッションシークレット + ms: Rahsia Sesi + pt-br: Segredo da sessão + ru: Секрет сессии + ko: 세션 시크릿 + zh-Hant: 會話密鑰 + zh: 会话密钥 \ No newline at end of file diff --git a/apps/arcane/0.15.1/docker-compose.yml b/apps/arcane/0.15.1/docker-compose.yml new file mode 100644 index 0000000..5a17efe --- /dev/null +++ b/apps/arcane/0.15.1/docker-compose.yml @@ -0,0 +1,18 @@ +services: + arcane: + image: ghcr.io/ofkm/arcane:v0.15.1 + container_name: ${CONTAINER_NAME} + ports: + - "${PANEL_APP_PORT_HTTP}:3000" + volumes: + - /var/run/docker.sock:/var/run/docker.sock + - ./data:/app/data + environment: + - APP_ENV=production + - PUID=2000 + - PGID=2000 + - PUBLIC_SESSION_SECRET=${PUBLIC_SESSION_SECRET} + restart: always +networks: + 1panel-network: + external: true \ No newline at end of file