tools/scripts/portalDocker/README.md

1009 B

Steps to Run Portal docker

  • Run the below command to start the mongo DB docker.

    docker run -d -p 27017-27019:27017-27019 --network evionet --rm --name mongodb mongo mongod --replSet Evio-rs0
    
  • Run the below command from the host shell:

    mongo Evio --eval "rs.initiate()"
    
  • Create a directory on the host to be mounted in the container's filesystem, eg. ~/evio/portal

    mkdir portal && cd portal
    
  • Copy the configuration file from .env into the portal directory.

  • Replace the value of the key DB_URI with the name of the mongo container

    DB_URI=mongodb
    
  • Run the below command to start the portal container The port number can be changed at your convenience.

    docker run -d -p 5000:5000 --name visualizer -v $HOME/evio/portal/.env:/etc/evio/config/.env --rm --privileged --network evionet edgevpnio/evio-portal:0.1