mirror of
https://github.com/luzifer-docker/starbound.git
synced 2024-11-08 11:49:59 +00:00
Initial version
This commit is contained in:
commit
7c50ab3fad
5 changed files with 49 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
config.vdf
|
21
Dockerfile
Normal file
21
Dockerfile
Normal file
|
@ -0,0 +1,21 @@
|
|||
FROM luzifer/steam-base
|
||||
|
||||
ARG STEAM_USER=kahlers
|
||||
|
||||
COPY *.txt /home/steam/
|
||||
COPY run.sh /home/steam/
|
||||
COPY config.vdf /home/steam/Steam/config/
|
||||
|
||||
RUN set -ex \
|
||||
&& apt-get update \
|
||||
&& apt-get install --no-install-recommends -y libvorbisfile3 \
|
||||
&& rm -rf /var/lib/apt/lists/ \
|
||||
&& curl -sSfL "https://github.com/Luzifer/korvike/releases/download/v0.5.0/korvike_linux_amd64.tar.gz" | tar -xvz -C /usr/local/bin/ \
|
||||
&& korvike_linux_amd64 -i /home/steam/install.txt -o /home/steam/install_processed.txt \
|
||||
&& gosu steam steamcmd.sh +runscript /home/steam/install_processed.txt \
|
||||
&& rm /home/steam/install_processed.txt
|
||||
|
||||
VOLUME ["/home/steam/starbound/mods", "/home/steam/starbound/storage"]
|
||||
EXPOSE 21025/tcp
|
||||
|
||||
ENTRYPOINT ["/home/steam/run.sh"]
|
15
README.md
Normal file
15
README.md
Normal file
|
@ -0,0 +1,15 @@
|
|||
# luzifer-docker / starbound
|
||||
|
||||
Server setup for Starbound game.
|
||||
|
||||
**Warning:** This Docker image contains Steam credentials and a server not being accessible to the public - You do not want to publish the image to any public registry!
|
||||
|
||||
## Generate config.vdf
|
||||
|
||||
In order to build the container you will need to have a `config.vdf` file which can be created using this command:
|
||||
|
||||
```console
|
||||
$ docker run --rm -ti -v $(pwd):/home/steam/Steam/config luzifer/steam-base gosu steam steamcmd.sh +login <yourlogin> +quit
|
||||
```
|
||||
|
||||
You will get asked for your password and - if enabled - your Steam Guard key. Afterwards a `config.vdf` file exists which you should keep secret as it contains cached credentials.
|
5
install.txt
Normal file
5
install.txt
Normal file
|
@ -0,0 +1,5 @@
|
|||
@ShutdownOnFailedCommand 1
|
||||
login {{ env `STEAM_USER` }}
|
||||
force_install_dir /home/steam/starbound
|
||||
app_update 211820
|
||||
quit
|
7
run.sh
Executable file
7
run.sh
Executable file
|
@ -0,0 +1,7 @@
|
|||
#!/usr/local/bin/dumb-init /bin/bash
|
||||
set -euxo pipefail
|
||||
|
||||
chown steam /home/steam/starbound/storage
|
||||
cd /home/steam/starbound/linux
|
||||
|
||||
exec gosu steam ./starbound_server
|
Loading…
Reference in a new issue