**Community-maintained Docker image that runs the x86_64 SteamCMD client on multiple architectures:
- On AMD64: Directly on native platform
- On ARM64: Using FEX-Emu for transparent x86_64 emulation
Not affiliated with Valve.**
- SteamCMD is the command-line Steam client used to install and update dedicated game servers ๐ฎ
- Valve does not publish an official multi-architecture container
- This image provides transparent support for both AMD64 and ARM64 hosts with near-native performance โก
- On ARM64, FEX-Emu transparently translates x86_64 syscalls, allowing SteamCMD to run efficiently
- ๐๏ธ Pre-built for
linux/amd64andlinux/arm64 - ๐ค Runs as non-root
steamuser out of the box - ๐งฉ Can be used as a base image for your own game-server containers
- ๐ Automatic architecture detection - pull the same image tag and get the right architecture
| Tag | Architecture | Base | Notes |
|---|---|---|---|
latest |
Multi-arch manifest | ubuntu:24.04 (amd64), supersunho/fex-emu:ubuntu-24.04 (arm64) |
Pulls correct architecture automatically |
amd64 |
AMD64 only | ubuntu:24.04 |
AMD64-specific image |
arm64 |
ARM64 only | supersunho/fex-emu:ubuntu-24.04 |
ARM64-specific image with FEX-Emu |
[commit-hash] |
Multi-arch manifest | ubuntu:24.04 (amd64), supersunho/fex-emu:ubuntu-24.04 (arm64) |
Version-specific builds |
# Pull image (automatically gets the right architecture for your host)
docker pull supersunho/steamcmd:latest
# Download & update a game ( eg. App 90 = HLDS )
docker run --rm -it supersunho/steamcmd \
+login anonymous +app_update 90 validate +quit
# Or pull specific architecture
docker pull supersunho/steamcmd:amd64 # For AMD64 hosts
docker pull supersunho/steamcmd:arm64 # For ARM64 hostsdocker volume create steam-data
docker run -it -v steam-data:/home/steam/Steam supersunho/steamcmd \
+login anonymous +app_update 740 +quitFROM supersunho/steamcmd:latest
# only CMD is needed โ ENTRYPOINT already calls steamcmd.sh
CMD ["+login","anonymous","+app_update","4020","+quit"]git clone https://github.com/supersunho/docker-steamcmd.git
cd docker-steamcmd
# Build for your current platform
docker buildx build --platform linux/amd64,linux/arm64 -t supersunho/steamcmd .
# Or build for a specific platform
docker buildx build --platform linux/amd64 -t supersunho/steamcmd:amd64 .
docker buildx build --platform linux/arm64 -t supersunho/steamcmd:arm64 .This project is community-driven and not endorsed by Valve.
Refer to Valveโs SteamCMD documentation for official guidance
- steamcmd/docker โ community reference implementation
- Valve Developer Wiki โ SteamCMD guide
- FEX-Emu โ x86_64 emulation for ARM64