├── .travis.yml ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── files ├── dproto.cfg ├── dproto_i386.so ├── liblist.gam ├── mapcycle.txt ├── maps.ini ├── plugins.ini ├── server.cfg └── steam_appid.txt ├── hlds_run.sh ├── maps ├── 35hp_2.bsp ├── aim_map.bsp ├── awp_india.bsp ├── de_dust2_2x2.bsp ├── fy_pool_day.bsp └── fy_snow.bsp └── tests └── smoke.py /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artem-panchenko/counter-strike-docker/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artem-panchenko/counter-strike-docker/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artem-panchenko/counter-strike-docker/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artem-panchenko/counter-strike-docker/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artem-panchenko/counter-strike-docker/HEAD/README.md -------------------------------------------------------------------------------- /files/dproto.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artem-panchenko/counter-strike-docker/HEAD/files/dproto.cfg -------------------------------------------------------------------------------- /files/dproto_i386.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artem-panchenko/counter-strike-docker/HEAD/files/dproto_i386.so -------------------------------------------------------------------------------- /files/liblist.gam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artem-panchenko/counter-strike-docker/HEAD/files/liblist.gam -------------------------------------------------------------------------------- /files/mapcycle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artem-panchenko/counter-strike-docker/HEAD/files/mapcycle.txt -------------------------------------------------------------------------------- /files/maps.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artem-panchenko/counter-strike-docker/HEAD/files/maps.ini -------------------------------------------------------------------------------- /files/plugins.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artem-panchenko/counter-strike-docker/HEAD/files/plugins.ini -------------------------------------------------------------------------------- /files/server.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artem-panchenko/counter-strike-docker/HEAD/files/server.cfg -------------------------------------------------------------------------------- /files/steam_appid.txt: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /hlds_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artem-panchenko/counter-strike-docker/HEAD/hlds_run.sh -------------------------------------------------------------------------------- /maps/35hp_2.bsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artem-panchenko/counter-strike-docker/HEAD/maps/35hp_2.bsp -------------------------------------------------------------------------------- /maps/aim_map.bsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artem-panchenko/counter-strike-docker/HEAD/maps/aim_map.bsp -------------------------------------------------------------------------------- /maps/awp_india.bsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artem-panchenko/counter-strike-docker/HEAD/maps/awp_india.bsp -------------------------------------------------------------------------------- /maps/de_dust2_2x2.bsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artem-panchenko/counter-strike-docker/HEAD/maps/de_dust2_2x2.bsp -------------------------------------------------------------------------------- /maps/fy_pool_day.bsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artem-panchenko/counter-strike-docker/HEAD/maps/fy_pool_day.bsp -------------------------------------------------------------------------------- /maps/fy_snow.bsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artem-panchenko/counter-strike-docker/HEAD/maps/fy_snow.bsp -------------------------------------------------------------------------------- /tests/smoke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artem-panchenko/counter-strike-docker/HEAD/tests/smoke.py --------------------------------------------------------------------------------