- Navigate to the place where you cloned the repo
- Build the image
docker build -f Website-Dockerfile -t website .
(you may have to addsudo
in front of the command) - Run the container
docker run --name website --restart=always -p 2121:80 -p 1883:1883 -t -d website
(remove -d if you don't want to run the container at the background)
- Build the image
docker build -f MinisterIN-Dockerfile -t ministerin .
(you may have to addsudo
in front of the command) - Run the container
docker run --name ministerin --restart=always -p 7777:7777 -t -d ministerin
(remove -d if you don't want to run the container at the background)