mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-28 02:22:26 +08:00
8 lines
162 B
Bash
8 lines
162 B
Bash
![]() |
#!/usr/bin/env bash
|
||
|
|
||
|
if [[ $# -eq 0 ]] ; then
|
||
|
echo "Missing argument of new version"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
docker build -t zadam/trilium:latest -t zadam/trilium:$1 .
|