mise a jour
This commit is contained in:
parent
7a81ba2adb
commit
40a15230ca
4 changed files with 110 additions and 0 deletions
21
Dockerfiles/device/Dockerfile
Normal file
21
Dockerfiles/device/Dockerfile
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
# Choosing the image to use
|
||||||
|
FROM node:alpine
|
||||||
|
|
||||||
|
# Installing required libraries
|
||||||
|
RUN apk add npm && \
|
||||||
|
mkdir device && \
|
||||||
|
cd device && \
|
||||||
|
npm install express && \
|
||||||
|
npm install yargs && \
|
||||||
|
npm install systeminformation && \
|
||||||
|
wget http://homepages.laas.fr/smedjiah/tmp/device.js
|
||||||
|
|
||||||
|
# set entry point for emulator gatekeeper (needed for compatibility with vim-emu datacenters)
|
||||||
|
#ENV VIM_EMU_CMD "node /device/device.js --local_ip "127.0.0.1" --local_port 9001 --local_name "dev1" --remote_ip "127.0.0.1" --remote_port 8282 --remote_name "gwf1" --send_period 3000" #uncomment when on ContainerNet datacenter
|
||||||
|
#ENV VIM_EMU_CMD "TODO at startup"
|
||||||
|
#ENV VIM_EMU_CMD_STOP "TODO at shutdown"
|
||||||
|
|
||||||
|
# CMD should always point to /bin/bash to not block the emulator (sh for node:alpine)
|
||||||
|
CMD node /device/device.js --local_ip "127.0.0.1" --local_port 9001 --local_name "dev1" --remote_ip "127.0.0.1" --remote_port 8282 --remote_name "gwf1" --send_period 3000 #comment when on ContainerNet datacenter
|
||||||
|
#CMD /bin/sh #uncomment when on ContainerNet datacenter
|
||||||
|
|
45
Dockerfiles/explanations.txt
Normal file
45
Dockerfiles/explanations.txt
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
Test Architecture
|
||||||
|
|
||||||
|
**********************
|
||||||
|
* CONTAINER *
|
||||||
|
* IP = x.x.x.x *
|
||||||
|
* *
|
||||||
|
* ++++++++++++++++++ *
|
||||||
|
* + SERVER (srv) + *
|
||||||
|
* + IP = 127.0.0.1 + *
|
||||||
|
* + PORT = 8080 + *
|
||||||
|
* ++++++++++++++++++ *
|
||||||
|
**********************
|
||||||
|
||
|
||||||
|
**********************
|
||||||
|
* CONTAINER *
|
||||||
|
* IP = x.x.x.x *
|
||||||
|
* *
|
||||||
|
* ++++++++++++++++++ *
|
||||||
|
* + GATWEWAY (gwi) + *
|
||||||
|
* + IP = 127.0.0.1 + *
|
||||||
|
* + PORT = 8181 + *
|
||||||
|
* ++++++++++++++++++ *
|
||||||
|
**********************
|
||||||
|
||
|
||||||
|
**********************
|
||||||
|
* CONTAINER *
|
||||||
|
* IP = x.x.x.x *
|
||||||
|
* *
|
||||||
|
* ++++++++++++++++++ *
|
||||||
|
* + GATEWAY (gwf1) + *
|
||||||
|
* + IP = 127.0.0.1 + *
|
||||||
|
* + PORT = 8282 + *
|
||||||
|
* ++++++++++++++++++ *
|
||||||
|
**********************
|
||||||
|
||
|
||||||
|
**********************
|
||||||
|
* CONTAINER *
|
||||||
|
* IP = x.x.x.x *
|
||||||
|
* *
|
||||||
|
* ++++++++++++++++++ *
|
||||||
|
* + DEVICE (dev1) + *
|
||||||
|
* + IP = 127.0.0.1 + *
|
||||||
|
* + PORT = 9001 + *
|
||||||
|
* ++++++++++++++++++ *
|
||||||
|
**********************
|
23
Dockerfiles/gatewayF/Dockerfile
Normal file
23
Dockerfiles/gatewayF/Dockerfile
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
# Choosing the image to use
|
||||||
|
FROM node:alpine
|
||||||
|
|
||||||
|
# Installing required libraries
|
||||||
|
RUN apk add npm && \
|
||||||
|
mkdir gateway && \
|
||||||
|
cd gateway && \
|
||||||
|
npm install express && \
|
||||||
|
npm install yargs && \
|
||||||
|
npm install systeminformation && \
|
||||||
|
wget http://homepages.laas.fr/smedjiah/tmp/gateway.js
|
||||||
|
|
||||||
|
# set entry point for emulator gatekeeper (needed for compatibility with vim-emu datacenters)
|
||||||
|
#ENV VIM_EMU_CMD "node /gateway/gateway.js --local_ip "127.0.0.1" --local_port 8282 --local_name "gwf1" --remote_ip "127.0.0.1" --remote_port 8181 --remote_name "gwi"
|
||||||
|
#uncomment when on ContainerNet datacenter
|
||||||
|
#ENV VIM_EMU_CMD "TODO at startup"
|
||||||
|
#ENV VIM_EMU_CMD_STOP "TODO at shutdown"
|
||||||
|
|
||||||
|
# CMD should always point to /bin/bash to not block the emulator (sh for node:alpine)
|
||||||
|
CMD node /gateway/gateway.js --local_ip "127.0.0.1" --local_port 8282 --local_name "gwf1" --remote_ip "127.0.0.1" --remote_port 8181 --remote_name "gwi"
|
||||||
|
#comment when on ContainerNet datacenter
|
||||||
|
#CMD /bin/sh #uncomment when on ContainerNet datacenter
|
||||||
|
|
21
Dockerfiles/gatewayI/Dockerfile
Normal file
21
Dockerfiles/gatewayI/Dockerfile
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
# Choosing the image to use
|
||||||
|
FROM node:alpine
|
||||||
|
|
||||||
|
# Installing required libraries
|
||||||
|
RUN apk add npm && \
|
||||||
|
mkdir gateway && \
|
||||||
|
cd gateway && \
|
||||||
|
npm install express && \
|
||||||
|
npm install yargs && \
|
||||||
|
npm install systeminformation && \
|
||||||
|
wget http://homepages.laas.fr/smedjiah/tmp/gateway.js
|
||||||
|
|
||||||
|
# set entry point for emulator gatekeeper (needed for compatibility with vim-emu datacenters)
|
||||||
|
#ENV VIM_EMU_CMD "node /gateway/gateway.js --local_ip "127.0.0.1" --local_port 8181 --local_name "gwi" --remote_ip "127.0.0.1" --remote_port 8080 --remote_name "srv" #uncomment when on ContainerNet datacenter
|
||||||
|
#ENV VIM_EMU_CMD "TODO at startup"
|
||||||
|
#ENV VIM_EMU_CMD_STOP "TODO at shutdown"
|
||||||
|
|
||||||
|
# CMD should always point to /bin/bash to not block the emulator (sh for node:alpine)
|
||||||
|
CMD node /gateway/gateway.js --local_ip "127.0.0.1" --local_port 8181 --local_name "gwi" --remote_ip "127.0.0.1" --remote_port 8080 --remote_name "srv" #comment when on ContainerNet datacenter
|
||||||
|
#CMD /bin/sh #uncomment when on ContainerNet datacenter
|
||||||
|
|
Loading…
Reference in a new issue