1b1d7f5ec0
Update compose to use v0.38.6 of lbrynet
8 lines
No EOL
203 B
Bash
Executable file
8 lines
No EOL
203 B
Bash
Executable file
#!/bin/bash
|
|
if [ $# -eq 0 ]
|
|
then
|
|
echo "No docker tag argument supplied. Use './build.sh <tag>'"
|
|
exit 1
|
|
fi
|
|
docker build --build-arg VERSION=$1 --tag lbry/lbrynet:$1 .
|
|
docker push lbry/lbrynet:$1 |