Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added default settings for A2S + corrected Docker CLI example #30

Merged
merged 2 commits into from
Dec 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ ENV SERVER_BIND_ADDRESS="0.0.0.0"
ENV SERVER_BIND_PORT=2001
ENV SERVER_PUBLIC_ADDRESS=""
ENV SERVER_PUBLIC_PORT=2001
ENV SERVER_A2S_ADDRESS=""
ENV SERVER_A2S_PORT=""
ENV SERVER_A2S_ADDRESS="0.0.0.0"
ENV SERVER_A2S_PORT=17777

ENV GAME_NAME="Arma Reforger Docker Server"
ENV GAME_PASSWORD=""
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ An Arma Reforger dedicated server. Updates to the latest version every time it i
-v path/to/configs:/reforger/Configs \
-v path/to/profiles:/home/profile \
-v path/to/workshop:/reforger/workshop \
-e SERVER_REGION="EU" \
-e SERVER_HOST_REGISTER_ADDRESS="public ip" \
-e SERVER_PUBLIC_ADDRESS="public ip" \
-e GAME_NAME="My Docker Reforger Server" \
ghcr.io/acemod/arma-reforger:latest
```
Expand Down
5 changes: 4 additions & 1 deletion docker_default.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
"bindPort": 2001,
"publicAddress": "",
"publicPort": 2001,
"a2s": null,
"a2s": {
"address": "",
"port": 17777
},
"game": {
"name": "Arma Reforger Docker Server",
"password": "",
Expand Down
Loading