Code Monkey home page Code Monkey logo

steamcmd-minimal's Introduction

Steam CMD - Minimal

Disclaimer

Note: This image is not officially supported by Valve.

If issues are encountered, please report them on the GitHub repository

Badges

Docker Image Version (latest by date) Docker Image Size (latest by date) Docker Pulls

Description

Docker image containing the latest Steam CMD Linux Binary. Use as a base for other images.
Built from scratch to be the smallest Steam CMD Docker image around!

Links

Source:

Resource links:

Instructions

Docker

The following are instructions for including this image as the base image for the Steam Dedicated Server that you can create based on this image.

Note: To make calling Steam CMD easier, the binary location can be accessed via the STEAM_PATH environment variable.

  1. Create a Dockerfile with the following contents:

    FROM docker.io/renegademaster/steamcmd-minimal:<tag>
    
    # Add your own instructions here
  2. You can then install a game server in one of several ways:

    • Install the game by adding additional Docker RUN instructions to the Dockerfile:

      FROM docker.io/renegademaster/steamcmd-minimal:<tag>
      
      # Download the Satisfactory Dedicated Server
      RUN steamcmd.sh +login anonymous +app_update 1690800 validate +quit
    • Alternatively, you can create a Steam CMD script and copy it into the /home/steam directory. This script can then be run when the container is started:

      FROM docker.io/renegademaster/steamcmd-minimal:<tag>
      
      # Copy the steamcmd script into the container
      COPY install.scmd /home/steam/install.scmd
      
      # Run the steamcmd script
      ENTRYPOINT steamcmd.sh +runscript install.scmd
    • Lastly, you can always create a Shell Script and copy it into the container to handle running more complex commands:

      FROM docker.io/renegademaster/steamcmd-minimal:<tag>
      
      # Copy the steamcmd script into the container
      COPY setup_script.sh /home/steam/setup_script.sh
      
      # Run the steamcmd script
      ENTRYPOINT ["/bin/bash", "/home/steam/setup_script.sh"]

steamcmd-minimal's People

Contributors

renegade-master avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.