Skip to content
This repository has been archived by the owner on Feb 25, 2024. It is now read-only.
/ steamcmd Public archive
forked from thmhoag/steamcmd

A steamcmd Docker image to serve as a base for steamcmd server images.

License

Notifications You must be signed in to change notification settings

DrPsychick/steamcmd

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 

Repository files navigation

👉 NEW LOCATION: SickHub/steamcmd 👈

Moved the repo to be able to maintain it. Unfortunately my PR has not been merged and the maintainer no longer reacted.

Build Status Docker Build Status Docker Automated build Docker Pulls License

steamcmd

Docker image with steamcmd pre-installed for hosting game servers.

Overview

This image is designed to be a base image for any server run via steamcmd. Daily automated builds ensure that the image always contains the latest version of steamcmd. When using the image it is recommended to always pull the latest tag to ensure no updates are required when running.

The image inherits from ubuntu:xenial for a few reasons:

  • Easier for those less familiar with linux to inherit and build from
  • Ability to pull steamcmd from the apt package manager

steamcmd Info

Tags

  • latest

Usage

Installing the image

Pull the latest:

docker pull thmhoag/steamcmd

As a base

To use the image as a base, inherit your docker image using the FROM annotation in the Dockerfile:

FROM thmhoag/steamcmd:latest

steamcmd has been added to the path so that it can be called easily from any location:

RUN steamcmd +app_update 1 +quit

Root/User Caveat

By default, this image runs as the steam user and does not have root access inside the container. This is partially due to the way that steamcmd expects to be run as a user with the name steam, but also for the increased security of not having root inside the container.

If you need root during the build of your image, you can switch users during the build:

USER root

RUN my-script-that-needs-root.sh

USER steam

If you need root access during the execution of the game server you will need to add the steam user to the root user group and make sure it can execute passwordless sudo commands. I won't cover that here, as that should not be necessary in the vast majority of cases and is not recommended.

To run the image

NOTE: It is not recommended to run this image by itself, it is indended to be used as a base image when creating game server specific images. (Such as a 7dtd image, ARK image, CSGO image, etc)

To run by itself:

$ docker run -it thmhoag/steamcmd bash

Contributing

Pull requests are welcome with the caveat that this image is meant to be a base image only and it is not intended to include any additional functionality beyond steamcmd itself.

About

A steamcmd Docker image to serve as a base for steamcmd server images.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Sponsor this project

 

Packages

No packages published

Languages

  • Dockerfile 100.0%