Skip to content

Commit 075be41

Browse files
committed
Update 'Building with Docker' README section
[ci skip]
1 parent 59a43f8 commit 075be41

File tree

1 file changed

+8
-15
lines changed

1 file changed

+8
-15
lines changed

README.md

Lines changed: 8 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -103,23 +103,16 @@ If you have problems resolving the required dependencies or want maximum compati
103103
$ docker pull ghcr.io/multitheftauto/mtasa-blue-build:latest
104104
```
105105

106-
| Architecture | Docker image tag |
107-
| ------------ | ---------------- |
108-
| x86_64 | latest |
109-
| x86 | i386 |
110-
| arm | armhf |
111-
| arm64 | arm64 |
112-
113106
**Building with Docker**
114107

115-
These examples assume that your current directory is the mtasa-blue checkout directory. You should also know that `/build` is the code directory required by our Docker images inside the container. If the current directory is not a valid git repository, it instead create a (shallow) clone of the mtasa-blue repository. After compiling, you will find the resulting binaries in `./Bin`. To build the unoptimised debug build, add `-e BUILD_CONFIG=debug` to the docker run arguments.
108+
These examples assume that your current directory is the mtasa-blue checkout directory. You should also know that `/build` is the code directory required by our Docker image inside the container. After compiling, you will find the resulting binaries in `./Bin`. To build the unoptimised debug build, add `--config=debug` to the docker run arguments.
116109

117-
| Architecture | Build command |
118-
| ------------ | -------------------------------------------------------------------------------------- |
119-
| x86_64 | ``` docker run --rm -v `pwd`:/build ghcr.io/multitheftauto/mtasa-blue-build:latest ``` |
120-
| x86 | ``` docker run --rm -v `pwd`:/build ghcr.io/multitheftauto/mtasa-blue-build:i386 ``` |
121-
| arm | ``` docker run --rm -v `pwd`:/build ghcr.io/multitheftauto/mtasa-blue-build:armhf ``` |
122-
| arm64 | ``` docker run --rm -v `pwd`:/build ghcr.io/multitheftauto/mtasa-blue-build:arm64 ``` |
110+
| Architecture | Build command |
111+
| ------------ | --------------------------------------------------------------------------------------------------- |
112+
| x86_64 | ``` docker run --rm -v `pwd`:/build ghcr.io/multitheftauto/mtasa-blue-build:latest --arch=x64 ``` |
113+
| x86 | ``` docker run --rm -v `pwd`:/build ghcr.io/multitheftauto/mtasa-blue-build:latest --arch=x86 ``` |
114+
| arm | ``` docker run --rm -v `pwd`:/build ghcr.io/multitheftauto/mtasa-blue-build:latest --arch=arm ``` |
115+
| arm64 | ``` docker run --rm -v `pwd`:/build ghcr.io/multitheftauto/mtasa-blue-build:latest --arch=arm64 ``` |
123116

124117
### Premake FAQ
125118

@@ -131,4 +124,4 @@ Execute `win-create-projects.bat`
131124

132125
Unless otherwise specified, all source code hosted on this repository is licensed under the GPLv3 license. See the [LICENSE](./LICENSE) file for more details.
133126

134-
Grand Theft Auto and all related trademarks are © Rockstar North 1997–2024.
127+
Grand Theft Auto and all related trademarks are © Rockstar North 1997–2025.

0 commit comments

Comments
 (0)