Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/acemod/docker-reforger
Arma Reforger installation in Docker
https://github.com/acemod/docker-reforger
arma-reforger docker
Last synced: about 23 hours ago
JSON representation
Arma Reforger installation in Docker
- Host: GitHub
- URL: https://github.com/acemod/docker-reforger
- Owner: acemod
- License: mit
- Created: 2022-05-20T17:49:20.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-07T01:13:55.000Z (4 months ago)
- Last Synced: 2024-08-02T08:10:11.899Z (3 months ago)
- Topics: arma-reforger, docker
- Language: Python
- Homepage:
- Size: 59.6 KB
- Stars: 53
- Watchers: 21
- Forks: 26
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Arma Reforger Dedicated Server
An Arma Reforger dedicated server. Updates to the latest version every time it is restarted.
## Usage
### Docker CLI
```sh
docker create \
--name=reforger-server \
-p 2001:2001/udp \
-v path/to/configs:/reforger/Configs \
-v path/to/profiles:/home/profile \
-v path/to/workshop:/reforger/workshop \
-e SERVER_PUBLIC_ADDRESS="public ip" \
-e GAME_NAME="My Docker Reforger Server" \
ghcr.io/acemod/arma-reforger:latest
```If an admin password is not provided, one will be generated and printed to the console.
### Docker-compose
Simply check-out / copy [the provided docker-compose.yml](docker-compose.yml) and adjust to your personal needs.
## Parameters
Check [the Dockerfile](Dockerfile#L32-L67), more docs will come later.
### Configs
By default the configs are generated from the ENV variables in the dockerfile. After the first run the file can be expanded with additional options manually, but the fields will always be overwritten by the ENV variables.
Alternatively, change the `ARMA_CONFIG` variable to a file present in the `Configs` volume. It will be used without modification.
### Experimental server
To use the experimental server instead of the regular set `STEAM_APPID` variable to `1890870`.
### Mods
Workshop mods can be defined in two ways. You can use both or either of those.
#### GAME_MODS_IDS_LIST
A comma separated list of IDs, with an optional version.
```sh
-e GAME_MODS_IDS_LIST="5965770215E93269=1.0.6,5965550F24A0C152"
```#### GAME_MODS_JSON_FILE_PATH
Path to a JSON file that contains array of mod objects.
```sh
-v ${PWD}/mods_file.json:/mods_file.json
-e GAME_MODS_JSON_FILE_PATH="/mods_file.json"
``````json
[
{
"modId": "597706449575D90B",
"version": "1.1.1"
}
]
```
### RCONRCON can be activated by defining the `RCON_PASSWORD` variable.
```sh
-e RCON_PASSWORD="ExamplePassword123"
```The password:
* is required for RCON to start
* does not support spaces
* must be at least 3 characters longUse `-e RCON_PERMISSION=""` to change [permission](https://community.bistudio.com/wiki/Arma_Reforger:Server_Config#permission) for all RCON clients.