7 lines
115 B
Bash
Executable File
7 lines
115 B
Bash
Executable File
#!/bin/bash
|
|
|
|
base=`dirname $0`
|
|
base=`readlink -f "$base"`
|
|
docker run -v "$base/conftest:/conf" --rm -it "$1" "$2"
|
|
|