EPIc Suite is an open source pandemic modeling application. This project is executed by the Computational Biology Laboratory of Fundacion Ciencia & Vida, which is funded by the AFOSR project Number FA9550-20-1-0196.
This repository contains the EPIc Suite GUI.
- Pull new changes:
git pull
- Build new Docker image:
docker build -t epic-suite-gui:mvp .
- Save Docker image in tarball:
docker save -o epic-suite-gui.tar epic-suite-gui:mvp
- Send tarball to Hydra through SCP:
scp epic-suite-gui.tar hydra@hydra:/home/hydra
- Load Docker image in server:
docker load -i epic-suite-gui.tar
- Stop and remove previous instance of the container:
docker stop epic-suite-gui && docker rm epic-suite-gui
- Start new instance of the GUI:
docker run -d --name epic-suite-gui -p 3000:3000 --restart=always epic-suite-gui:mvp
- Pull new changes:
git pull
- Build new Docker image:
docker build -t epic-suite-gui:mvp .
- Stop and remove previous instance of the container:
docker stop epic-suite-gui && docker rm epic-suite-gui
- Start new instance of the GUI:
docker run -d --name epic-suite-gui -p 3000:3000 --restart=always epic-suite-gui:mvp
Dockerfile
sourced from Next.js repository