7 lines
99 B
Bash
7 lines
99 B
Bash
#!/bin/sh
|
|
|
|
while true; do
|
|
docker pull git.sfclub.cc/cloud/workspace-image:latest
|
|
sleep 3600
|
|
done
|