11 lines
114 B
Bash
Executable File
11 lines
114 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cleanup_() {
|
|
touch /.image-update-flag
|
|
}
|
|
|
|
if [ ! -f /.image-update-flag ]; then
|
|
docker pull
|
|
fi
|
|
|