mirror of
https://github.com/Websoft9/websoft9.git
synced 2024-11-22 07:30:24 +00:00
12 lines
No EOL
361 B
Bash
12 lines
No EOL
361 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
trap "sleep 1; continue" ERR
|
|
|
|
while true; do
|
|
docker cp websoft9-git:/var/websoft9/credential websoft9-apphub:/websoft9/credentials
|
|
docker cp websoft9-deployment:/var/websoft9/credential websoft9-apphub:/websoft9/credentials
|
|
docker cp websoft9-proxy:/var/websoft9/credential websoft9-apphub:/websoft9/credentials
|
|
sleep 3
|
|
done |