Skip to content

Commit f0a2820

Browse files
author
Sean P. Kane
committed
Add Dockerfile and game instructions
1 parent 3e19052 commit f0a2820

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

Dockerfile

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
FROM fedora:22
2+
3+
RUN dnf install -y httpd
4+
RUN mkdir /var/www/html/res
5+
ADD publish/html5/res/* /var/www/html/res/
6+
ADD publish/html5/game.min.js /var/www/html/
7+
ADD publish/html5/index.html /var/www/html/
8+
ADD publish/html5/project.json /var/www/html/
9+
10+
EXPOSE 80
11+
12+
CMD ["/usr/sbin/httpd", "-D", "FOREGROUND"]

README.md

+12
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,15 @@
33
Little arcade game in tribute to Docker. Made for the Global Game Jam 2015 by Alexandre Santos and Matthieu Lepinay.
44

55
Play it here http://globalgamejam.org/2015/games/lost-sea
6+
7+
## Instructions
8+
9+
Containers are falling from the sky. Don't let them get lost at sea again!
10+
11+
* In singleplayer mode, use the left and right arrow keys to control the position of the falling container. Press space to choose the next container to fall.
12+
* The dark blue containers contains databases, they are slow and heavy.
13+
* The dark red(black) ones are caching services, they fall faster!
14+
15+
* Try to get 10 containers on the docker whale to "deploy" your current containers and score a point. You lose a life when a container get lost at sea!
16+
17+
* In multiplayer mode, try to score more points than your opponent and be the last to lose 5 containers in the sea. "A" & "D" keys for the player on the left, and the arrow keys for the player on the right.

0 commit comments

Comments
 (0)