A Dockerized school project.
See http://github.com/HenryFBP/2019-team-07f/ for the non-Dockerized version, which used Packer and Vagrant.
cd docker
docker-compose build
cd docker
docker-compose up
Go to http://localhost:5001/
https://docs.docker.com/develop/develop-images/dockerfile_best-practices/
This will cause you to have to rebuild ALL containers.
Only use if you need to.
Run docker ps -a -q
to see all Docker containers.
docker stop $(docker ps -a -q)
docker rm $(docker ps -a -q)
docker exec -it 2019team07f-storage /bin/bash
docker exec -it 2019team07f-webserver /bin/bash
docker exec -it 2019team07f-database /bin/bash
...etc