diff --git a/.github/ISSUE_TEMPLATE/BUG.yml b/.github/ISSUE_TEMPLATE/BUG.yml index 3a7339e..12f0cf0 100644 --- a/.github/ISSUE_TEMPLATE/BUG.yml +++ b/.github/ISSUE_TEMPLATE/BUG.yml @@ -34,7 +34,7 @@ body: - type: dropdown id: game attributes: - label: What game are you trying to run? + label: What games are you trying to run? multiple: true options: - Half-Life Deathmatch (valve) @@ -46,6 +46,16 @@ body: - Deathmatch Classic (dmc) - Ricochet (ricochet) - Custom Mod + - type: checkboxes + id: terms + attributes: + label: Do you have custom server configs or mods installed? + description: These are optional, please check all that apply. + options: + - label: I have custom config files located in the config directory + required: false + - label: I have a custom mod located in the mods directory + required: false - type: textarea id: logs attributes: @@ -55,6 +65,6 @@ body: - type: textarea id: compose attributes: - label: Startup Setup - description: Please copy and paste the command you are using to start the container, or your docker-compose file. + label: Docker Command + description: Please copy and paste the command you are using to start the container, or your docker-compose file if you're using docker compose. render: yml diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index ef749f9..27906a6 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -21,5 +21,5 @@ jobs: env: GAME: cstrike with: - context: . + context: ./container build-args: GAME=cstrike diff --git a/README.md b/README.md index 109d72a..49e27aa 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ docker run -d \ -p 26900:26900/udp \ -e GAME=${GAME} \ jives/hlds:cstrike \ - "+maxplayers 12 +map cs_italy" # 📣 Modify your server startup commands here. You can specify the image with the desired game you want the server to run in the line above. + "+log on +rcon_password changeme +maxplayers 12 +map cs_italy" # 📣 Modify your server startup commands here. You can specify the image with the desired game you want the server to run in the line above. ``` > [!TIP]