8 lines
180 B
Bash
Executable file
8 lines
180 B
Bash
Executable file
#!/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
|