You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,20 @@ See [FAQ](./FAQ.md) for some general information.
15
15
## Usage
16
16
If you just want to use this app, simply download the latest [release binary](https://github.com/RoboCup-SSL/ssl-game-controller/releases/latest). The binary is self-contained. No dependencies are required.
17
17
18
+
You can also use pre-build docker images:
19
+
```shell script
20
+
docker pull robocupssl/ssl-game-controller
21
+
# Run GC with default configuration
22
+
docker run -p 8081:8081 robocupssl/ssl-game-controller
23
+
# You can also mount the config and work directories locally
24
+
docker run -p 8081:8081 \
25
+
# Local config dir
26
+
-v "$(pwd)"/config:/config \
27
+
# Local working dir with the current state
28
+
-v "$(pwd)"/work:/work \
29
+
robocupssl/ssl-game-controller
30
+
```
31
+
18
32
The controller will generate a default config file to [config/ssl-game-controller.yaml](config/ssl-game-controller.yaml) on the first start. Afterwards, you can change all settings there.
0 commit comments