Clone the project with the following command:
$ git clone https://github.com/Remmeauth/Documentation.git
$ cd DocumentationTo build the project, use the following command:
$ docker build -t developers-portal . -f Dockerfile.developmentTo run the project, use the following command. It will start the server and occupate current terminal session:
$ docker run -p 8080:8080 -v $PWD:/developers-portal --name developers-portal developers-portalIf you need to enter the bash of the container, use the following command:
$ docker exec -it heroku-load-balancer bashClean all containers with the following command:
$ docker rm $(docker ps -a -q) -fClean all images with the following command:
$ docker rmi $(docker images -q) -fTo build the project, use the following command:
$ docker build -t developers-portal . -f Dockerfile.productionTo run the project, use the following command. It will start the server and occupate current terminal session:
$ docker run -p 7979:7979 -e PORT=7979 -v $PWD:/developers-portal --name developers-portal developers-portal