Update app version [skip ci]
This commit is contained in:
5
apps/duplicati/2.1.0.115/.env.sample
Normal file
5
apps/duplicati/2.1.0.115/.env.sample
Normal file
@@ -0,0 +1,5 @@
|
||||
BACKUPS_PATH="./data/backups"
|
||||
CONTAINER_NAME="duplicati"
|
||||
DATA_PATH="./data/data"
|
||||
INTERNAL_BACKUPS_PATH="/backups"
|
||||
PANEL_APP_PORT_HTTP=40261
|
||||
31
apps/duplicati/2.1.0.115/data.yml
Normal file
31
apps/duplicati/2.1.0.115/data.yml
Normal file
@@ -0,0 +1,31 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- default: "40261"
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_HTTP
|
||||
labelEn: Port
|
||||
labelZh: 端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: "./data/backups"
|
||||
edit: true
|
||||
envKey: BACKUPS_PATH
|
||||
labelEn: External Backups Path
|
||||
labelZh: 外部备份路径
|
||||
required: true
|
||||
type: text
|
||||
- default: "/backups"
|
||||
edit: true
|
||||
envKey: INTERNAL_BACKUPS_PATH
|
||||
labelEn: Internal Backups Path
|
||||
labelZh: 内部备份路径
|
||||
required: true
|
||||
type: text
|
||||
- default: "./data/data"
|
||||
edit: true
|
||||
envKey: DATA_PATH
|
||||
labelEn: Data Path
|
||||
labelZh: 数据路径
|
||||
required: true
|
||||
type: text
|
||||
18
apps/duplicati/2.1.0.115/docker-compose.yml
Normal file
18
apps/duplicati/2.1.0.115/docker-compose.yml
Normal file
@@ -0,0 +1,18 @@
|
||||
services:
|
||||
duplicati:
|
||||
image: "duplicati/duplicati:2.1.0.115"
|
||||
container_name: ${CONTAINER_NAME}
|
||||
restart: always
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- "${PANEL_APP_PORT_HTTP}:8200"
|
||||
volumes:
|
||||
- ${BACKUPS_PATH}:${INTERNAL_BACKUPS_PATH}
|
||||
- ${DATA_PATH}:/data
|
||||
labels:
|
||||
createdBy: "Apps"
|
||||
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
Reference in New Issue
Block a user