Skip to content

Commit

Permalink
1.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
bateau84 committed Mar 5, 2015
1 parent b02f632 commit 22453e9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ RUN apt-get install wget unzip libfontconfig1 libfreetype6 libicu52 liblzo2-2 li

# Download openttd installer
WORKDIR /tmp/
RUN wget -q http://binaries.openttd.org/releases/1.5.0-beta2/openttd-1.5.0-beta2-linux-ubuntu-trusty-amd64.deb
RUN wget -q http://binaries.openttd.org/releases/1.4.4/openttd-1.4.4-linux-ubuntu-trusty-amd64.deb

# Install openttd
RUN dpkg -i /tmp/openttd-1.5.0-beta2-linux-ubuntu-trusty-amd64.deb
RUN dpkg -i /tmp/openttd-1.4.4-linux-ubuntu-trusty-amd64.deb
RUN rm -rf /tmp/openttd-*.*

# Get GFX files
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
## Usage ##

docker run -d --name openttd -p 3979:3979/tcp -p 3979:3979/udp bateau/openttd:1.5.0-beta2
docker run -d --name openttd -p 3979:3979/tcp -p 3979:3979/udp bateau/openttd:1.4.4

Openttd runs version 1.5.0-beta2.
Openttd runs version 1.4.4.

Its set up to not load any games by default (new game) and it can be run without mounting a .openttd folder. however, if you want to load your savegames, this is required.

Expand All @@ -12,7 +12,7 @@ To mount up your .openttd folder use -v /path/to/your/.openttd:/root/.openttd

For example to run server and load my savegame game.sav:

docker run -d --name openttd -p 3979:3979/tcp -p 3979:3979/udp -v /home/username/.openttd:/root/.openttd -e "loadgame=true" -e "savename=save/game.sav" bateau/openttd:1.5.0-beta2
docker run -d --name openttd -p 3979:3979/tcp -p 3979:3979/udp -v /home/username/.openttd:/root/.openttd -e "loadgame=true" -e "savename=save/game.sav" bateau/openttd:1.4.4

## Other tags ##
* 1.4.4
Expand Down

0 comments on commit 22453e9

Please sign in to comment.