8 lines
182 B
Bash
8 lines
182 B
Bash
#!/bin/bash
|
|
curl -sSL https://get.docker.com/ | CHANNEL=stable sh
|
|
|
|
mkdir enc
|
|
openssl rand -hex 32 >> enc/zabbix_agentd.psk
|
|
chown 1997:1997 enc/zabbix_agentd.psk
|
|
|
|
docker compose up -d |