This is a JavaScript game developed with Phaser (game framework) as an university project with gomupo. I wanted to make it easier to try it out so I dockerized it. Have fun with it!
To get the game started you've got two options, either running it directly with Node.js or deploying it in a Docker container
The first time you want to try it out you need to build the docker image and create the container with it.
In order to run this container you'll need docker installed.
To build the image run:
docker build -t parallel-rush .
To start the container run:
docker run --name parallel-rush -p 3000:3000 -d parallel-rush
This will start the container in detached mode.
To stop the container run:
docker stop parallel-rush
The next time you want to restart the container you can run:
docker start parallel-rush
If you already have Node.js configured in your machine you may want run it with:
node app.js
There's an extensive guide covering the game's basics in the project report appendix, which can be found here
Gonzalo Muelas Pozo aka gomupo for the game assets and your part of the coding, m8 you are the mos talented guy! Iñigo Alvaro Saenz mrmooon
PurpleBooth for the README.md gist for containers.