Important
QEMU user static binaries has been removed from the image from the 2024-07-07 tag and onwards. See issue #7. For those with hosts incompatible with 32-bit binaries (like Box86), please see sonroyaalmerol/steam-depot-downloader as an alternative.
steam
,steam-bookworm
,latest
(bookworm/Dockerfile)root
,root-bookworm
(bookworm/Dockerfile)steam-bullseye
,bullseye
(bullseye/Dockerfile)root-bullseye
(bullseye/Dockerfile)
Important
New versions of the Docker image are built once a week to keep up with Box86 and Box64 updates. The rest of the installed packages are version pinned to ensure stability. Use a specific tag with a date if you want to pin a specific release.
The Steam Console Client or SteamCMD is a command-line version of the Steam client. Its primary use is to install and update various dedicated servers available on Steam using a command-line interface. It works with games that use the SteamPipe content system. All games have been migrated from the deprecated HLDSUpdateTool to SteamCMD. This image can be used as a base image for Steam-based dedicated servers (Source: developer.valvesoftware.com).
This image has Box64 and Box86 integrated. By default, SteamCMD will be using Box86 when running via the steamcmd.sh shell script. Box86 is needed as SteamCMD itself a 32-bit binary application. For 64-bit server binaries, please use Box64 /usr/local/bin/box64
. For tweaking, environment variables could be used for both Box64 and Box86.
Important
Images are hosted in ghcr.io (ghcr.io/sonroyaalmerol/steamcmd-arm64) and Docker Hub (sonroyaalmerol/steamcmd-arm64).
Whilst it's recommended to use this image as a base image of other game servers, you can also run it in an interactive shell using the following command:
$ docker run -it --name=steamcmd ghcr.io/sonroyaalmerol/steamcmd-arm64 bash
$ ./steamcmd.sh +force_install_dir /home/steam/squad-dedicated +login anonymous +app_update 403240 +quit
This can prove useful if you are just looking to test a certain game server installation.
Running with named volumes:
$ docker volume create steamcmd_login_volume # Optional: Location of login session
$ docker volume create steamcmd_volume # Optional: Location of SteamCMD installation
$ docker run -it \
-v "steamcmd_login_volume:/home/steam/Steam" \
-v "steamcmd_volume:/home/steam/steamcmd" \
ghcr.io/sonroyaalmerol/steamcmd-arm64 bash
This setup is necessary if you have to download a non-anonymous appID or upload a steampipe build. For an example check out: https://hub.docker.com/r/cm2network/steampipe/
This image includes the nano
text editor for convenience.
The steamcmd.sh
can be found in the following directory: /home/steam/steamcmd
For better Box64 compatibility, some dedicated servers need specific configurations for stability. The combination listed below might give you the best chance in exchange for performance. You may adjust them as needed. No custom Box64 configurations have been set for this image by default. See Box64 usage documentation for more info.
# Set these as env variables within the container
export BOX64_DYNAREC_BIGBLOCK=0
export BOX64_DYNAREC_SAFEFLAGS=2
export BOX64_DYNAREC_STRONGMEM=3
export BOX64_DYNAREC_FASTROUND=0
export BOX64_DYNAREC_FASTNAN=0
export BOX64_DYNAREC_X87DOUBLE=1
This image currently includes the following Box64 build variants for the following devices:
- Generic [
generic
] - Raspberry Pi 5 [
rpi5
] - M1 (M-Series) Mac [
m1
] - ADLink Ampere Altra (Oracle ARM CPUs) [
adlink
]
You may specify which variant to use with the ARM64_DEVICE
environment variable. generic
variant will be used by default.
For more build variants, please create a new issue with your reasoning.
Images utilizing this base image:
Image | Pulls |
---|---|
thijsvanloef/palworld-server-docker |
The steamcmd
images come in two flavors, each designed for a specific use case.
This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used as the base to build other images off of. This image's default user is steam
, any command executed in a higher layer Dockerfile
will therefor be executed as that user.
This is a specialized image. This image's default user is root
. If you need to install additional packages for you game server and do not want to create excess layers, then this is the right choice.
Note: Running the steamcmd.sh
as root
will fail because the owner is the user steam
, either swap the active user using su steam
or use chown to change the ownership of the directory.