9 lines
177 B
Bash
9 lines
177 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
if [ -z "$1" ]; then
|
||
|
echo "usage: $0 <tag-version>"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
docker run -v $(realpath ../../../impl):/impl -it git.tkolb.de/amateurfunk/hamnet70/impl_buildenv:$1
|