diff options
author | Marek Gradzki <mgradzki@cisco.com> | 2017-11-24 14:24:53 +0100 |
---|---|---|
committer | Marek Gradzki <mgradzki@cisco.com> | 2017-11-27 07:22:42 +0100 |
commit | fc838c481e6f588906f6282ee1891b4b98ab1779 (patch) | |
tree | c6f4e6854c500692ad08d85f6b9c259d2e8736df /docker/start_hc2vpp_container.sh | |
parent | 8f481756073847efaa6f54c6482b3850b3cd7535 (diff) |
Various scripts for creating and connecting hc2vpp docker containers
Change-Id: I755a23ba279a84600edfa2ddef89c2fe645c7945
Signed-off-by: Marek Gradzki <mgradzki@cisco.com>
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 |