https://github.com/jonathanporta/steamcmd-docker
base Docker container with a working install of steamcmd.
https://github.com/jonathanporta/steamcmd-docker
Last synced: 5 months ago
JSON representation
base Docker container with a working install of steamcmd.
- Host: GitHub
- URL: https://github.com/jonathanporta/steamcmd-docker
- Owner: JonathanPorta
- Created: 2016-01-03T09:23:18.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-01-03T11:22:05.000Z (over 10 years ago)
- Last Synced: 2025-01-24T19:36:55.804Z (over 1 year ago)
- Homepage: https://quay.io/jonathanporta/steamcmd
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# steamcmd in a Docker container [](https://quay.io/repository/jonathanporta/steamcmd)
Use this as a base container when you need a working install of steamcmd.
# Example Usage
A couple ways to use this container:
### Interactively from the cmd line
`docker run -it jonathanporta/steamcmd +login anonymous`
### To install a game or game server files into the container
```
docker run -it jonathanporta/steamcmd \
+login anonymous \
+force_install_dir /srv \
+app_update 376030 validate \
+quit
```
### Use this as a base image for building a server container
```
# Dockerfile
FROM jonathanporta/steamcmd
# Install Ark server files
RUN ./steamcmd.sh +login anonymous \
+force_install_dir /srv \
+app_update 376030 validate \
+quit
# Set the server executable as the entrypoint
ENTRYPOINT ["/srv/ShooterGame/Binaries/Linux/ShooterGameServer"]
...
```