Final project for CS411. Our group is creating a web based game!
docker:
sudo apt install docker.iodocker-compose: https://docs.docker.com/compose/install/
After cloning the repo, open a terminal and navigate to the project folder. First build the containers using docker-compose:
sudo docker-compose up -d --buildTo run the container:
sudo docker-compose upTo connect to the database:
docker-compose exec db mysql -u root -h localhost -P 3306 -p
enter password in prompt
USE myDB;