mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-12-02 17:01:25 +00:00
10 lines
181 B
Bash
10 lines
181 B
Bash
#!/bin/sh
|
|
|
|
logcmd()
|
|
{
|
|
"$@" 2>&1 | awk -v timestamp="$(date) " '$0=timestamp$0' >>/var/log/docker-swarm.log
|
|
}
|
|
|
|
logcmd docker swarm join {{MANAGER_IP}}:4500
|
|
logcmd docker swarm info
|