9 lines
180 B
Bash
9 lines
180 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [[ "$1" == "" ]]; then
|
||
|
echo "No commit ID provided"
|
||
|
exit
|
||
|
fi
|
||
|
dt=$(date +"%Y%m%d")
|
||
|
podman build -f Containerfile --build-arg="PLEROMA_VER=$1" -t pleroma:run-$dt-$1
|