Skip to content

Instantly share code, notes, and snippets.

@canhlinh
Last active April 28, 2022 02:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save canhlinh/ca4c8ffa762e9104c50040625d99d265 to your computer and use it in GitHub Desktop.
Save canhlinh/ca4c8ffa762e9104c50040625d99d265 to your computer and use it in GitHub Desktop.
csgo server lan
version: "3.4"
volumes:
data:
services:
rcon:
image: forewing/webrcon-server
ports:
- 8000:8000
restart: unless-stopped
command: "-conf /app/config.json"
volumes:
- ./rcon_config.json:/app/config.json
csgo_server:
restart: always
image: timche/csgo
volumes:
- ./data:/home/csgo/server
ports:
- 27015:27015/udp
- 27015:27015/tcp
environment:
- CSGO_MAP=cs_italy
# - CSGO_MAP=de_safehouse
- CSGO_GAME_TYPE=0
- CSGO_GAME_MODE=0
- CSGO_RCON_PW=changeme
- CSGO_MAP_GROUP=mg_cs_italy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment