mirror of
https://example.com
synced 2024-11-23 08:26:40 +09:00
22 lines
476 B
Bash
Executable file
22 lines
476 B
Bash
Executable file
#!/bin/sh
|
|
set -eu
|
|
|
|
. neko/update/utils
|
|
|
|
pull() {
|
|
say 'Pulling the image...'
|
|
run 'docker pull registry.code.naskya.net/naskya/firefish'
|
|
}
|
|
|
|
if ! pull; then
|
|
say 'awawa, the image may not be compatible with your environment...'
|
|
say 'Gonnya try building the image locally!'
|
|
|
|
say 'It takes some time! Why not brew a cup of cofe?'
|
|
run "$(cat - << EOC
|
|
docker build --tag registry.code.naskya.net/naskya/firefish --build-arg VERSION="$(version)" .
|
|
EOC
|
|
)"
|
|
fi
|
|
|
|
say 'Done!'
|