Dartsnake-mod (Project will be called "Raumffisch" in future) is a fork of Dartsnake by Nane Kratzke. It will feature a new game concept as well as some other game elements as part of a semester project for the class "Webtechnologien" at the Fachhochschule Lübeck.
See attached original readme file for more information:
Original Dartsnake readme starts here:
Dartsnake is the Dart implementation of the famous Snake game. You can play a live version here.
It can be deployed as a docker container like this:
docker build -t dartsnake github.com/nkratzke/dartsnake
docker run -p 8080:3000 -d dartsnake
To learn more about how to dockerize Dart applications check out the following links:
If docker is used on a non linux system like Mac OS X it is likely that docker uses VirtualBox under the hood. In theses cases you must configure port forwarding in virtual box. So if you are exposing port 3000 in your docker container mapping it to port 8080 for the outside world you must forward host port 8080 to docker-vm port 8080 in virtualbox. How to do this is explained here.