Skip to content

Instantly share code, notes, and snippets.

@ondrejmo
Last active May 13, 2016 21:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ondrejmo/6f7e7d0333098686c65d to your computer and use it in GitHub Desktop.
Save ondrejmo/6f7e7d0333098686c65d to your computer and use it in GitHub Desktop.
Easy way to run run 2048 game web version in docker container
#!/bin/bash
## 2048 for your web browser on localhost:2048
git clone https://github.com/gabrielecirulli/2048
docker run -d --name 2048 -p 2048:80/tcp -v `pwd`/2048/:/usr/share/nginx/html/ nginx:latest
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment