All Projects → Gonzih → Docker Csgo Server

Gonzih / Docker Csgo Server

Licence: mit
Dockerfile for the CSGO server

Projects that are alternatives of or similar to Docker Csgo Server

Csgo Server Launcher
Counter-Strike Global Offensive Dedicated Server Launcher
Stars: ✭ 447 (+243.85%)
Mutual labels:  counter-strike
Counter Strike Docker
Docker image for Counter-Strike 1.6 server
Stars: ✭ 63 (-51.54%)
Mutual labels:  counter-strike
Cso2 Master Server
A master server for CSO2
Stars: ✭ 91 (-30%)
Mutual labels:  counter-strike
Csgo Osx Linux
Counter-Strike: Global Offensive
Stars: ✭ 521 (+300.77%)
Mutual labels:  counter-strike
Counter Strike Js
Counter Strike implementation with Javascript/Typescript
Stars: ✭ 45 (-65.38%)
Mutual labels:  counter-strike
Steamworks
Exposing SteamWorks functions to SourcePawn.
Stars: ✭ 70 (-46.15%)
Mutual labels:  counter-strike
Matterbridge
bridge between mattermost, IRC, gitter, xmpp, slack, discord, telegram, rocketchat, twitch, ssh-chat, zulip, whatsapp, keybase, matrix, microsoft teams, nextcloud, mumble, vk and more with REST API (mattermost not required!)
Stars: ✭ 4,452 (+3324.62%)
Mutual labels:  counter-strike
Osiris
Free open-source game cheat for Counter-Strike: Global Offensive, written in modern C++. GUI powered by Dear ImGui.
Stars: ✭ 1,851 (+1323.85%)
Mutual labels:  counter-strike
Yuki.cfg
csgo config
Stars: ✭ 45 (-65.38%)
Mutual labels:  counter-strike
Csgoverview
A 2D demo replay tool for Counter Strike: Global Offensive.
Stars: ✭ 88 (-32.31%)
Mutual labels:  counter-strike
Charlatano
Proves JVM cheats are viable on native games, and demonstrates the longevity against anti-cheat signature detection systems
Stars: ✭ 599 (+360.77%)
Mutual labels:  counter-strike
Csgo Float
💎 Retrieve CS:GO float values in JavaScript
Stars: ✭ 37 (-71.54%)
Mutual labels:  counter-strike
Little Anti Cheat
Anti-Cheat for Source Games
Stars: ✭ 77 (-40.77%)
Mutual labels:  counter-strike
Cs16 Client
Counter-Strike 1.6 rewritten client.dll. Without VGUI, ParticleMan and ecology friendy.
Stars: ✭ 449 (+245.38%)
Mutual labels:  counter-strike
Node Globaloffensive
A Node.js module to connect to and interact with the CS:GO game coordinator. Mostly used to get item data.
Stars: ✭ 96 (-26.15%)
Mutual labels:  counter-strike
Get5
CS:GO Sourcemod plugin for competitive matches/scrims
Stars: ✭ 390 (+200%)
Mutual labels:  counter-strike
Xena
Lightweight, lighting-fast Java Based Cross-Platform CSGO Cheat
Stars: ✭ 69 (-46.92%)
Mutual labels:  counter-strike
Aristois Legit
Full project files for aristois, Counter-Strike: Global Offensive cheat.
Stars: ✭ 110 (-15.38%)
Mutual labels:  counter-strike
Yapb
Third party bot for Counter-Strike
Stars: ✭ 101 (-22.31%)
Mutual labels:  counter-strike
Anubis
Free open-source training software / cheat for Counter-Strike: Global Offensive, written in C.
Stars: ✭ 81 (-37.69%)
Mutual labels:  counter-strike

Counter Strike Global Offensive + Docker

License

CS:GO server in docker with 128 tick enabled by default.

Docker hub image

docker pull gonzih/csgo-server

Details:

By default image is build with enabled autoupdate feature (take a look at csgo.sh file). You can create new Dockerfile based on that image (FROM csgo) and customize it with plugins, configs, CMD and ENTRYPOINT instructions.

# Build image and tag it as csgo
docker build -t csgo github.com/Gonzih/docker-csgo-server

# Run image with default options (CMD in Dockerfile)
docker run -d -p 27015:27015 -p 27015:27015/udp csgo

# Run image with as Classic Casual server
docker run -d -p 27015:27015 -p 27015:27015/udp csgo -console -usercon +game_type 0 +game_mode 0 +mapgroup mg_active +map de_cache

# Run image with as Classic Competetive server
docker run -d -p 27015:27015 -p 27015:27015/udp csgo -console -usercon +game_type 0 +game_mode 1 +mapgroup mg_active +map de_cache

# Run image with as Arm Race server
docker run -d -p 27015:27015 -p 27015:27015/udp csgo -console -usercon +game_type 1 +game_mode 0 +mapgroup mg_armsrace +map ar_shoots

# Run image with as Demolition server
docker run -d -p 27015:27015 -p 27015:27015/udp csgo -console -usercon +game_type 1 +game_mode 1 +mapgroup mg_demolition +map de_lake

# Run image with as Deathmatch server
docker run -d -p 27015:27015 -p 27015:27015/udp csgo -console -usercon +game_type 1 +game_mode 2 +mapgroup mg_allclassic +map de_dust

# To run lan server just add `+sv_lan 1` at end of command
docker run -d -p 27015:27015 -p 27015:27015/udp csgo -console -usercon +game_type 0 +game_mode 1 +mapgroup mg_active +map de_cache +sv_lan 1

Running public server

To run public server you need to Register Login Token and adding +sv_setsteamaccount THISGSLTHERE -net_port_try 1 to the server command. Refer to Docs for more details.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].