Skip to content

Commit c82b0f8

Browse files
committed
Bump
1 parent 471a1ec commit c82b0f8

File tree

2 files changed

+43
-2
lines changed

2 files changed

+43
-2
lines changed

Dockerfile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
FROM suchja/wine
2+
3+
MAINTAINER Milan Felix Sulc <[email protected]>
4+
5+
RUN apt-get update && \
6+
apt-get dist-upgrade -y && \
7+
apt-get install -y wget tar && \
8+
wget https://github.com/whaleapps/gruntz/releases/download/1.0/gruntz.tgz && \
9+
mkdir /srv/gruntz && \
10+
tar -xvf gruntz.tgz -C /srv/gruntz && \
11+
apt-get remove -y wget tar && \
12+
apt-get clean -y && apt-get autoclean -y && apt-get autoremove -y && \
13+
rm -rf /var/lib/apt/lists/* /var/lib/log/* /tmp/* /var/tmp/*
14+
15+
CMD ["wine", "explorer", "/desktop=Gruntz", "/srv/gruntz/GRUNTZ.exe"]

README.md

Lines changed: 28 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,28 @@
1-
# gruntz
2-
Gruntz
1+
# Gruntz
2+
3+
Famous old school game (https://en.wikipedia.org/wiki/Gruntz).
4+
5+
![Gruntz in Docker container](https://raw.githubusercontent.com/whaleapps/gruntz/master/docs/gruntz.png)
6+
7+
## Usage
8+
9+
```
10+
docker run \
11+
--rm \
12+
-it \
13+
-v /tmp/.X11-unix:/tmp/.X11-unix:ro \
14+
-e DISPLAY=$DISPLAY \
15+
--device /dev/snd \
16+
-v /dev/shm:/dev/shm \
17+
whaleapps/gruntz
18+
```
19+
20+
Don't forget to allow xhost.
21+
22+
```
23+
xhost +x
24+
```
25+
26+
## Troubleshooting
27+
28+
Gruntz works only at resolution 640x480.

0 commit comments

Comments
 (0)