14 lines
250 B
Bash
Executable File
14 lines
250 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "-v" == "$1" ]; then
|
|
VERBOSE="--verbose"
|
|
shift
|
|
else
|
|
VERBOSE=""
|
|
fi
|
|
|
|
./build.sh
|
|
rm -rf docker_ca
|
|
build/lab-ca $VERBOSE --config docker_ca.hcl initca
|
|
build/lab-ca $VERBOSE --config docker_ca.hcl provision --file docker.hcl
|