diff options
author | Ethan Lynn <ethanlynnl@vmware.com> | 2019-05-14 11:42:44 +0800 |
---|---|---|
committer | Ethan Lynn <ethanlynnl@vmware.com> | 2019-05-14 11:47:17 +0800 |
commit | 324fd4acbb6a4b0b7c33cee0661efb58c6304db2 (patch) | |
tree | fe1f3b5673719dab693a70d270037ed3e1303948 | |
parent | f50d38c603fab415a5dd32348ee6332e6227cb28 (diff) |
Remove redis server for security reasoncasablanca
Remove redis server for security reason
Change-Id: Ie4ee851a6f3d8cd137fd3f84536c51d8ebfa407c
Issue-ID: MULTICLOUD-626
Signed-off-by: Ethan Lynn <ethanlynnl@vmware.com>
-rw-r--r-- | vio/docker/Dockerfile | 3 | ||||
-rwxr-xr-x | vio/docker/instance-run.sh | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/vio/docker/Dockerfile b/vio/docker/Dockerfile index 5425e99..091c1df 100644 --- a/vio/docker/Dockerfile +++ b/vio/docker/Dockerfile @@ -15,8 +15,7 @@ EXPOSE 9004 RUN apt-get update && \ apt-get install -y unzip && \ apt-get install -y curl && \ - apt-get install -y wget && \ - apt-get install -y redis-server + apt-get install -y wget RUN cd /opt/ && \ diff --git a/vio/docker/instance-run.sh b/vio/docker/instance-run.sh index 6ae160b..ca3437a 100755 --- a/vio/docker/instance-run.sh +++ b/vio/docker/instance-run.sh @@ -13,7 +13,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -service redis-server start +# service redis-server start cd ./vio ./run.sh |