From ae973cf9b65e9206bf13a3e5dd50c261b1f7efe5 Mon Sep 17 00:00:00 2001 From: Nicolai Cornelis Date: Tue, 7 Mar 2023 20:20:39 +0100 Subject: [PATCH] Adjust Docker doc --- documentation/docs/developers.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/docs/developers.md b/documentation/docs/developers.md index 4bca223bd..730edeac5 100644 --- a/documentation/docs/developers.md +++ b/documentation/docs/developers.md @@ -26,14 +26,14 @@ If you are unfamiliar with how building SourceMod plugins works, you can use [Do Get5 [from source](https://github.com/splewis/get5). A precompiled image is available: ```shell -docker pull nickdnk/get5-build:latest +docker pull nickdnk/get5-build:1.10.0-6545-sp-fix ``` If run from the repository root, this would put the compiled plugin into a `builds` folder. You could of course replace `$PWD/builds` with any other path to move the output there. ```shell -docker run --rm -v $PWD:/get5src -v $PWD/builds:/get5/builds nickdnk/get5-build:latest +docker run --rm -v $PWD:/get5src -v $PWD/builds:/get5/builds nickdnk/get5-build:1.10.0-6545-sp-fix ``` !!! warning "Custom builds are unsupported"