mirror of
https://github.com/zadam/trilium.git
synced 2024-11-11 18:08:13 +08:00
8 lines
No EOL
167 B
Bash
Executable file
8 lines
No EOL
167 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
if [[ $# -eq 0 ]] ; then
|
|
echo "Missing argument of new version"
|
|
exit 1
|
|
fi
|
|
|
|
sudo docker build -t zadam/trilium:latest -t zadam/trilium:$1 . |