diff options
Diffstat (limited to 'docker/start_hc2vpp_container.sh')
-rwxr-xr-x | docker/start_hc2vpp_container.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/docker/start_hc2vpp_container.sh b/docker/start_hc2vpp_container.sh new file mode 100755 index 000000000..820fa021d --- /dev/null +++ b/docker/start_hc2vpp_container.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +# Create & start container +# $1 - container name +docker run -dt --privileged --name=$1 hc2vpp +docker start $1 |