Compare commits

...

2 Commits

Author SHA1 Message Date
656429a40c
Update README.md 2025-02-07 18:47:40 +01:00
8f3c72d2f2
Update Dockerfile 2025-02-07 18:45:59 +01:00
2 changed files with 13 additions and 4 deletions

View File

@ -22,8 +22,9 @@ RUN cp linux32/crashhandler.so linux32/steamservice.so
RUN mkdir ~/.steam
RUN ln -s /steamcmd/linux32/ ~/.steam/sdk32
RUN ./steamcmd.sh +force_install_dir /hlds +login anonymous +app_update 90 +quit; exit 0
RUN ./steamcmd.sh +force_install_dir /hlds +login anonymous +app_update 90 validate +quit
RUN ./steamcmd.sh +force_install_dir /hlds +login anonymous +app_set_config 90 +mod cstrike +quit; exit 0
RUN ./steamcmd.sh +force_install_dir /hlds +login anonymous +app_update 90 -beta steam_legacy +quit; exit 0
RUN ./steamcmd.sh +force_install_dir /hlds +login anonymous +app_update 90 -beta steam_legacy validate +quit
WORKDIR /hlds

View File

@ -1,10 +1,18 @@
# cstrike
Образ основан на [этом репозитории](https://github.com/AMXX4u/BasePack).
## Развёртывание
## setup
```
mkdir /opt/cstrike
cd /opt/cstrike
git clone github.com/fruworg/cstrike
git clone github.com/fruworg/cstrike .
docker compose up -d
```
## build
```
mkdir /opt/cstrike
cd /opt/cstrike
git clone github.com/fruworg/cstrike .
docker build . --platform=linux/386 -t cstrike
```