From a22232fe3bf304adef1d2d8e533e23ac6cc5495a Mon Sep 17 00:00:00 2001 From: James Ives Date: Tue, 16 Jul 2024 09:37:25 -0400 Subject: [PATCH] =?UTF-8?q?docs:=20=F0=9F=93=9D=20Small=20documentation=20?= =?UTF-8?q?patches,=20provide=20rcon=5Fpassword=20example=20(#28)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * build: add auto-labeler and sponsors information (#17) * Update README.md * Create sponsors.yml * Create label.yml * test: resolve issue thing * style: remove typo * chore: update * build(deps): bump softprops/action-gh-release from 1 to 2 (#18) Bumps [softprops/action-gh-release](https://github.com/softprops/action-gh-release) from 1 to 2. - [Release notes](https://github.com/softprops/action-gh-release/releases) - [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md) - [Commits](https://github.com/softprops/action-gh-release/compare/v1...v2) --- updated-dependencies: - dependency-name: softprops/action-gh-release dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * build(deps): bump actions/checkout from 3 to 4 (#19) Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * docs: 📝 Improve documentation (#21) * docs: docker whale image * Update README.md * Update README.md * Update README.md * docs: add more examples * docs: add more examples * docs: improve docs * Update README.md * Update README.md * Update README.md * test * Update BUILDING_AN_IMAGE.md * Update label.yml * Delete crowbar.png * Update README.md * Update sponsors.yml * docs: more doc improvements/spell checks etc * Deploying to beta from @ JamesIves/hlds-docker@ee94d7ce3c59b132a08827d977fb9df8e620a0b7 🚀 * Update sponsors.yml * Update README.md * docs: server -> joinable not error * Update CUSTOM_MODS.md * Update SERVER_CONFIGS_AND_PLUGINS.md * Update README.md * Update README.md * Update BUG.yml * docs: fix clipping issue * build: :wrench: adjust docker-compose.local to docker-compose.build as it more accurately describes its task * feat: split things into container dir * docs: shuffle docs around * Update beta.yml * Update publish.yml * Update README.md * docs: improve REAMDE * Update README.md * Update CONTRIBUTING.md * docs: remove old examples * docs: cleanup docs * Update Dockerfile * Update Dockerfile * Update Dockerfile * docs: more doc examples. * Update docker-compose.yml * Update .gitignore * Update entrypoint.sh * build(deps): bump anothrNick/github-tag-action from 1.69.0 to 1.70.0 (#24) Bumps [anothrNick/github-tag-action](https://github.com/anothrnick/github-tag-action) from 1.69.0 to 1.70.0. - [Release notes](https://github.com/anothrnick/github-tag-action/releases) - [Commits](https://github.com/anothrnick/github-tag-action/compare/1.69.0...1.70.0) --- updated-dependencies: - dependency-name: anothrNick/github-tag-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * docs: 📝 Improved bug report form and added rcon_password example (#26) * Update BUG.yml * t * Update BUG.yml * Update BUG.yml --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: JamesIves --- .github/ISSUE_TEMPLATE/BUG.yml | 16 +++++++++++++--- .github/workflows/validate.yml | 2 +- README.md | 2 +- 3 files changed, 15 insertions(+), 5 deletions(-) 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]