91 lines
1.9 KiB
YAML
91 lines
1.9 KiB
YAML
|
|
services:
|
|
|
|
x-common-config: &common-config
|
|
image: henrygd/beszel-agent:latest
|
|
restart: unless-stopped
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
|
environment:
|
|
KEY: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGNx6yKSqJHUiSKTM44/A1luwBije9HkHwnOxwXYx8q4"
|
|
deploy: &common-deploy
|
|
mode: replicated
|
|
replicas: 1
|
|
|
|
beszel-agent-docker1:
|
|
<<: *common-config
|
|
ports:
|
|
- 45876:45876
|
|
environment:
|
|
<<: *common-config.environment
|
|
LISTEN: '45876'
|
|
deploy:
|
|
<<: *common-deploy
|
|
placement:
|
|
constraints:
|
|
- node.hostname == docker1
|
|
|
|
beszel-agent-docker2:
|
|
<<: *common-config
|
|
ports:
|
|
- 45877:45877
|
|
environment:
|
|
<<: *common-config.environment
|
|
LISTEN: '45877'
|
|
deploy:
|
|
<<: *common-deploy
|
|
placement:
|
|
constraints:
|
|
- node.hostname == docker2
|
|
|
|
beszel-agent-docker3:
|
|
<<: *common-config
|
|
ports:
|
|
- 45878:45878
|
|
environment:
|
|
<<: *common-config.environment
|
|
LISTEN: '45878'
|
|
deploy:
|
|
<<: *common-deploy
|
|
placement:
|
|
constraints:
|
|
- node.hostname == docker3
|
|
|
|
beszel-agent-docker4:
|
|
<<: *common-config
|
|
ports:
|
|
- 45879:45879
|
|
environment:
|
|
<<: *common-config.environment
|
|
LISTEN: '45879'
|
|
deploy:
|
|
<<: *common-deploy
|
|
placement:
|
|
constraints:
|
|
- node.hostname == docker4
|
|
|
|
beszel-agent-nas:
|
|
<<: *common-config
|
|
ports:
|
|
- 45880:45880
|
|
environment:
|
|
<<: *common-config.environment
|
|
LISTEN: '45880'
|
|
deploy:
|
|
<<: *common-deploy
|
|
placement:
|
|
constraints:
|
|
- node.hostname == nas
|
|
|
|
beszel-agent-bruce:
|
|
<<: *common-config
|
|
ports:
|
|
- 45881:45881
|
|
environment:
|
|
<<: *common-config.environment
|
|
LISTEN: '45881'
|
|
deploy:
|
|
<<: *common-deploy
|
|
placement:
|
|
constraints:
|
|
- node.hostname == bruce
|