mirror of
https://example.com
synced 2024-11-23 05:36:39 +09:00
19 lines
420 B
Bash
19 lines
420 B
Bash
|
#!/usr/bin/env bash
|
||
|
set -eu
|
||
|
|
||
|
source neko/update/utils
|
||
|
|
||
|
pull() {
|
||
|
say "Pulling the image..."
|
||
|
docker pull docker.io/naskya/firefish
|
||
|
}
|
||
|
|
||
|
if ! pull; then
|
||
|
say "awawa, the image may not be compatible with your environment..."
|
||
|
say "Gonnya try building the image locally!"
|
||
|
COMMIT_HASH=$(git rev-parse --short HEAD)
|
||
|
docker build --tag docker.io/naskya/firefish --build-arg COMMIT="${COMMIT_HASH:0:7}" .
|
||
|
fi
|
||
|
|
||
|
say "Done!"
|