Commit 3022058 1 parent 943fea0 commit 3022058 Copy full SHA for 3022058
File tree 3 files changed +26
-0
lines changed
3 files changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ A web multiplayer Tron game like with curves
6
6
## Installation
7
7
8
8
* [ Get your local Curvytron server in 1 minute!] ( doc/installation.md )
9
+ * [ ...or launch a Docker container with the game!] ( doc/docker.md )
9
10
10
11
---
11
12
Original file line number Diff line number Diff line change
1
+ ## Prerequisite
2
+
3
+ You need to install Docker.
4
+
5
+ ## Building an Image
6
+
7
+ __ Clone the repository__
8
+
9
+ git clone https://github.com/Elao/curvytron.git
10
+ cd curvytron
11
+
12
+ __ Build the docker image__
13
+
14
+ docker build -t yourname/curvytron .
15
+
16
+ ## Launch server
17
+
18
+ docker run -d --name curvytron -p 8080:8080 yourname/curvytron
19
+
20
+ ## Play
21
+
22
+ Go to [ http://localhost:8080 ] ( http://localhost:8080/ )
23
+ Join a room, choose a player name and play!
Original file line number Diff line number Diff line change 3
3
Curvytron runs on [ node.js >= v0.10] ( https://nodejs.org/ ) .
4
4
You need to install node on the machine that will run the Curvytron server.
5
5
6
+ Alternatively, you could also [ run Curvytron on Docker] ( doc/docker.md ) .
7
+
6
8
## Installation
7
9
8
10
__ Clone the repository__
You can’t perform that action at this time.
0 commit comments