mirror of
https://github.com/Awuqing/BackupX.git
synced 2026-05-27 19:19:35 +08:00
- fix bare-metal Agent install config and executor path handling - support release package layout in deploy/install.sh and release workflow - add regression tests for Agent execution and deploy install script behavior
14 lines
402 B
Cheetah
14 lines
402 B
Cheetah
# BackupX Agent docker-compose 片段
|
|
# 生成于 {{.MasterURL}} · 节点 ID {{.NodeID}}
|
|
version: "3.8"
|
|
services:
|
|
backupx-agent:
|
|
image: awuqing/backupx:{{.AgentVersion}}
|
|
command: ["agent"]
|
|
restart: unless-stopped
|
|
environment:
|
|
BACKUPX_AGENT_MASTER: "{{.MasterURL}}"
|
|
BACKUPX_AGENT_TOKEN: "{{.AgentToken}}"
|
|
volumes:
|
|
- /var/lib/backupx-agent:/var/lib/backupx-agent
|