From dcc691e7673db1bec596e3e997dc8f5fc11fd2f0 Mon Sep 17 00:00:00 2001 From: "Garcia-Hernandez, Ruben Jesus (rgarcia)" <garcia@lrz.de> Date: Thu, 15 Nov 2018 17:28:29 +0100 Subject: [PATCH] Removed unneeded folder --- containerization/Dockerfile | 33 --------------------------------- containerization/README.md | 14 -------------- 2 files changed, 47 deletions(-) delete mode 100644 containerization/Dockerfile delete mode 100644 containerization/README.md diff --git a/containerization/Dockerfile b/containerization/Dockerfile deleted file mode 100644 index 95bacc4..0000000 --- a/containerization/Dockerfile +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 2018 Atte Silanpää -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# note, copy this file to VR-demos folder first -FROM bitnami/apache:2.4 - -# copy NOMAD webservices -COPY ./webserver/htdocs/NOMAD/ /opt/bitnami/apache/htdocs/NOMAD/ -COPY ./webserver/cgi-bin/NOMAD/ /opt/bitnami/apache/cgi-bin/NOMAD/ -COPY ./webserver/pass /opt/bitnami/apache/ - -# allow cgi-bin -RUN sed -i 's%#LoadModule cgid_module modules/mod_cgid.so%LoadModule cgid_module modules/mod_cgid.so%' /opt/bitnami/apache/conf/httpd.conf - -# add wget and zip. gzip, curl, tar are there by default -USER root -RUN apt-get update \ - && apt-get install -y wget \ - && apt-get install -y zip \ - && rm -rf /var/lib/apt/lists/* - - diff --git a/containerization/README.md b/containerization/README.md deleted file mode 100644 index bb0f655..0000000 --- a/containerization/README.md +++ /dev/null @@ -1,14 +0,0 @@ -Docker file to build a container to perform the VR conversion webservices -* Check ../webserver/README.md - -* copy the Dockerfile to .. (VR-demos -folder) -* install docker -* add your NOMAD username and password in webserver/pass -* build container - sudo docker build -t nomadvr . -* run container - sudo docker run -d -p 8080:8080 nomadvr -* Test e.g. with you.rip.add.res:8080/cgi-bin/NOMAD/material?109702 -* stop container - sudo docker stop <container-name> - -- GitLab