提交合并

Signed-off-by: 萌森 <qyg2297248353@163.com>
This commit is contained in:
2024-07-17 16:30:13 +08:00
committed by qyg2297248353
commit 6c18fe434d
449 changed files with 21391 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
additionalProperties:
formFields:
- default: "/home/dockge"
edit: true
envKey: DOCKGE_ROOT_PATH
labelZh: 数据持久化路径
labelEn: Data persistence path
required: true
type: text
- default: 5001
edit: true
envKey: PANEL_APP_PORT_HTTP
labelZh: WebUI 端口
labelEn: WebUI port
required: true
rule: paramPort
type: number
+23
View File
@@ -0,0 +1,23 @@
version: "3.8"
networks:
1panel-network:
external: true
services:
dockge:
image: louislam/dockge:1.4.2
container_name: ${CONTAINER_NAME}
labels:
createdBy: "Apps"
restart: always
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:5001
volumes:
- ${DOCKGE_ROOT_PATH}/data:/app/data
- ${DOCKGE_ROOT_PATH}/stacks:/opt/dockge/stacks
- /var/run/docker.sock:/var/run/docker.sock
environment:
- DOCKGE_STACKS_DIR=/opt/dockge/stacks
+10
View File
@@ -0,0 +1,10 @@
#!/bin/bash
if [ -f .env ]; then
source .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi
+10
View File
@@ -0,0 +1,10 @@
#!/bin/bash
if [ -f .env ]; then
source .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi
+10
View File
@@ -0,0 +1,10 @@
#!/bin/bash
if [ -f .env ]; then
source .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi