Skip to content

Commit

Permalink
Updated to version 13.4
Browse files Browse the repository at this point in the history
  • Loading branch information
andreashauschild committed Aug 3, 2023
1 parent 6699560 commit 98617fc
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ The following table shows which docker image contains which OpenTTD version. For
| Container | OpenTTD |
|----------------------------------|---------|
| hauschi86/openttd-server:latest | 13.0 |
| hauschi86/openttd-server:v13.4.0 | 13.4 |
| hauschi86/openttd-server:v13.0.0 | 13.0 |
| hauschi86/openttd-server:v12.2.2 | 12.2 |

Expand Down
10 changes: 5 additions & 5 deletions src/main/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM ubuntu:20.04

ARG OPENTTD_VERSION="13.0"
ARG OPENGFX_VERSION="0.6.1"
ARG OPENTTD_VERSION="13.4"
ARG OPENGFX_VERSION="0.7.1"

RUN apt-get update
RUN apt-get install dos2unix
Expand Down Expand Up @@ -48,13 +48,13 @@ RUN passwd -d openttd

USER openttd
WORKDIR /home/openttd
RUN wget https://cdn.openttd.org/openttd-releases/13.0/openttd-13.0-linux-generic-amd64.tar.xz
RUN wget https://cdn.openttd.org/openttd-releases/13.4/openttd-13.4-linux-generic-amd64.tar.xz
RUN wget https://cdn.openttd.org/opengfx-releases/7.1/opengfx-7.1-all.zip

RUN tar -xf openttd-13.0-linux-generic-amd64.tar.xz
RUN tar -xf openttd-13.4-linux-generic-amd64.tar.xz

RUN mkdir openttd-13
RUN cp -a openttd-13.0-linux-generic-amd64/. openttd-13
RUN cp -a openttd-13.4-linux-generic-amd64/. openttd-13

RUN unzip opengfx-7.1-all.zip
RUN tar -xf opengfx-7.1.tar -C openttd-13/baseset/
Expand Down
10 changes: 5 additions & 5 deletions src/main/docker/Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM ubuntu:20.04

ARG OPENTTD_VERSION="13.0"
ARG OPENGFX_VERSION="0.6.1"
ARG OPENTTD_VERSION="13.4"
ARG OPENGFX_VERSION="0.7.1"

RUN apt-get update
RUN apt-get install dos2unix
Expand Down Expand Up @@ -48,13 +48,13 @@ RUN passwd -d openttd

USER openttd
WORKDIR /home/openttd
RUN wget https://cdn.openttd.org/openttd-releases/13.0/openttd-13.0-linux-generic-amd64.tar.xz
RUN wget https://cdn.openttd.org/openttd-releases/13.4/openttd-13.4-linux-generic-amd64.tar.xz
RUN wget https://cdn.openttd.org/opengfx-releases/7.1/opengfx-7.1-all.zip

RUN tar -xf openttd-13.0-linux-generic-amd64.tar.xz
RUN tar -xf openttd-13.4-linux-generic-amd64.tar.xz

RUN mkdir openttd-13
RUN cp -a openttd-13.0-linux-generic-amd64/. openttd-13
RUN cp -a openttd-13.4-linux-generic-amd64/. openttd-13

RUN unzip opengfx-7.1-all.zip
RUN tar -xf opengfx-7.1.tar -C openttd-13/baseset/
Expand Down

0 comments on commit 98617fc

Please sign in to comment.