├── .dockerignore ├── .github └── workflows │ └── docker-image.yml ├── .gitignore ├── Dockerfile ├── README.md ├── banner.png ├── lib ├── bind_key │ └── amxx │ │ ├── bind_key.amxx │ │ └── bind_key.sma ├── dproto │ ├── Readme.txt │ ├── amxx │ │ ├── dp_test.sma │ │ ├── updatehint.sma │ │ └── updatehint.txt │ ├── bin │ │ ├── Linux │ │ │ └── dproto_i386.so │ │ └── Windows │ │ │ └── dproto.dll │ └── dproto.cfg └── hlds.install └── valve ├── addons └── amxmodx │ └── configs │ └── maps.ini ├── config └── server.cfg ├── default.cfg ├── mapcycle.txt ├── motd.txt ├── server.cfg └── steamcomm.lst /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkirienko/hlds-docker-dproto/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkirienko/hlds-docker-dproto/HEAD/.github/workflows/docker-image.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # MacOS filesystem 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkirienko/hlds-docker-dproto/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkirienko/hlds-docker-dproto/HEAD/README.md -------------------------------------------------------------------------------- /banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkirienko/hlds-docker-dproto/HEAD/banner.png -------------------------------------------------------------------------------- /lib/bind_key/amxx/bind_key.amxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkirienko/hlds-docker-dproto/HEAD/lib/bind_key/amxx/bind_key.amxx -------------------------------------------------------------------------------- /lib/bind_key/amxx/bind_key.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkirienko/hlds-docker-dproto/HEAD/lib/bind_key/amxx/bind_key.sma -------------------------------------------------------------------------------- /lib/dproto/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkirienko/hlds-docker-dproto/HEAD/lib/dproto/Readme.txt -------------------------------------------------------------------------------- /lib/dproto/amxx/dp_test.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkirienko/hlds-docker-dproto/HEAD/lib/dproto/amxx/dp_test.sma -------------------------------------------------------------------------------- /lib/dproto/amxx/updatehint.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkirienko/hlds-docker-dproto/HEAD/lib/dproto/amxx/updatehint.sma -------------------------------------------------------------------------------- /lib/dproto/amxx/updatehint.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkirienko/hlds-docker-dproto/HEAD/lib/dproto/amxx/updatehint.txt -------------------------------------------------------------------------------- /lib/dproto/bin/Linux/dproto_i386.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkirienko/hlds-docker-dproto/HEAD/lib/dproto/bin/Linux/dproto_i386.so -------------------------------------------------------------------------------- /lib/dproto/bin/Windows/dproto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkirienko/hlds-docker-dproto/HEAD/lib/dproto/bin/Windows/dproto.dll -------------------------------------------------------------------------------- /lib/dproto/dproto.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkirienko/hlds-docker-dproto/HEAD/lib/dproto/dproto.cfg -------------------------------------------------------------------------------- /lib/hlds.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkirienko/hlds-docker-dproto/HEAD/lib/hlds.install -------------------------------------------------------------------------------- /valve/addons/amxmodx/configs/maps.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkirienko/hlds-docker-dproto/HEAD/valve/addons/amxmodx/configs/maps.ini -------------------------------------------------------------------------------- /valve/config/server.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkirienko/hlds-docker-dproto/HEAD/valve/config/server.cfg -------------------------------------------------------------------------------- /valve/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkirienko/hlds-docker-dproto/HEAD/valve/default.cfg -------------------------------------------------------------------------------- /valve/mapcycle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkirienko/hlds-docker-dproto/HEAD/valve/mapcycle.txt -------------------------------------------------------------------------------- /valve/motd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkirienko/hlds-docker-dproto/HEAD/valve/motd.txt -------------------------------------------------------------------------------- /valve/server.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkirienko/hlds-docker-dproto/HEAD/valve/server.cfg -------------------------------------------------------------------------------- /valve/steamcomm.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkirienko/hlds-docker-dproto/HEAD/valve/steamcomm.lst --------------------------------------------------------------------------------