garrysmod-docker

(★ 53)

A docker image to host a garry's mod server

File Explorer

  • .dockerignore
  • .gitattributes
  • debian-post.Dockerfile
  • Dockerfile
  • LICENSE
  • README.md
  • start.sh
  • ubuntu.Dockerfile

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

docker build

View Details ▼

Build an image from a Dockerfile.

docker build .

Build a Docker image using the Dockerfile in the current directory:

docker build {{github.com/creack/docker-firefox}}

Build a Docker image from a Dockerfile at a specified URL:

docker build {{[-t|--tag]}} {{name:tag}} .

Build a Docker image and tag it:

🔍

docker container

View Details ▼

Manage Docker containers.

docker {{[ps|container ls]}}

List currently running Docker containers:

docker {{[start|container start]}} {{container1_name container2_name ...}}

Start one or more stopped containers:

docker {{[kill|container kill]}} {{container1_name container2_name ...}}

Kill one or more running containers:

🔍

docker run

View Details ▼

This command is an alias of `docker container run`.

tldr docker container run

View documentation for the original command:

🔍

gdb

View Details ▼

The GNU Debugger.

gdb {{path/to/executable}}

Debug an executable:

gdb {{[-p|--pid]}} {{process_id}}

Attach a process to `gdb`:

gdb {{[-c|--core]}} {{path/to/core}} {{path/to/executable}}

Debug with a core file:

🔍

steam

View Details ▼

Video game platform by Valve.

steam

Launch Steam, printing debug messages to `stdout`:

steam -console

Launch Steam and enable its in-app debug console tab:

steam -silent

Launch Steam without opening the GUI:

// repository documentation