1
0
Fork 1
mirror of https://example.com synced 2024-11-23 03:26:40 +09:00
firefish/neko/update/docker.sh

23 lines
476 B
Bash
Raw Normal View History

#!/bin/sh
set -eu
. neko/update/utils
pull() {
2023-11-18 16:37:55 +09:00
say 'Pulling the image...'
run 'docker pull registry.code.naskya.net/naskya/firefish'
}
if ! pull; then
2023-11-18 16:37:55 +09:00
say 'awawa, the image may not be compatible with your environment...'
say 'Gonnya try building the image locally!'
2023-11-18 16:37:55 +09:00
say 'It takes some time! Why not brew a cup of cofe?'
2023-11-21 03:23:06 +09:00
run "$(cat - << EOC
docker build --tag registry.code.naskya.net/naskya/firefish --build-arg VERSION="$(version)" .
2023-11-21 03:23:06 +09:00
EOC
)"
fi
2023-11-18 16:37:55 +09:00
say 'Done!'