diff options
author | Gabriel Oginski <gabrielx.oginski@intel.com> | 2022-07-08 07:46:32 +0000 |
---|---|---|
committer | Fan Zhang <royzhang1980@hotmail.com> | 2022-09-28 17:46:04 +0000 |
commit | 95875774bc69a81b1a17963642fc574070ba37d0 (patch) | |
tree | 3792511fa634de36caad77279f8d04c381c4474b /extras/strongswan/vpp_sswan/docker/Dockerfile | |
parent | 4e88e041ad47bf422bbb2a0940f77aba11ea2178 (diff) |
vpp-swan: Add scripts for testing
Added scripts to reparing setups for testing
To prepare and run containers:
sudo ./extras/strongswan/vpp_sswan/docker/run.sh prepare_containers
To prepare setups:
sudo ./extras/strongswan/vpp_sswan/docker/run.sh config
To clean-up settups:
sudo ./extras/strongswan/vpp_sswan/docker/run.sh clean
To deleted all containers and images in Docker:
sudo ./extras/strongswan/vpp_sswan/docker/run.sh deleted
Type: feature
Signed-off-by: Gabriel Oginski <gabrielx.oginski@intel.com>
Change-Id: I77f01c0419dccc95f610046c8552ae825f2c7e12
Diffstat (limited to 'extras/strongswan/vpp_sswan/docker/Dockerfile')
-rw-r--r-- | extras/strongswan/vpp_sswan/docker/Dockerfile | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/extras/strongswan/vpp_sswan/docker/Dockerfile b/extras/strongswan/vpp_sswan/docker/Dockerfile new file mode 100644 index 00000000000..a0307083baf --- /dev/null +++ b/extras/strongswan/vpp_sswan/docker/Dockerfile @@ -0,0 +1,28 @@ +FROM jrei/systemd-ubuntu:20.04 + +# add proxy according your own network +#ENV http_proxy="" +#ENV https_proxy="" +#ENV no_proxy="" + +# update +RUN apt-get update + +# tools +RUN apt-get install -y git make wget libsystemd-dev +RUN apt-get install -y sudo gperf bison flex +RUN apt-get install -y iproute2 iputils-ping + +# setup env +WORKDIR /root +COPY ./docker/scripts/init_docker1.sh /root/ +COPY ./docker/scripts/init_docker2.sh /root/ +COPY ./docker/scripts/init.sh /root/ +COPY ./docker/scripts/run_vpp.sh /root/ +RUN chmod +x /root/init_docker1.sh +RUN chmod +x /root/init_docker2.sh +RUN chmod +x /root/init.sh +RUN chmod +x /root/run_vpp.sh +COPY / /root/vpp_sswan + +RUN ./init.sh |