Add documentation to start your own arma3 server

This commit is contained in:
2024-11-11 14:22:13 +02:00
parent 5e413ecf8f
commit 4bebdedd7b
3 changed files with 413 additions and 2 deletions
+20
View File
@@ -0,0 +1,20 @@
version: '3'
services:
arma3server:
container_name: "arma3-server"
image: "ghcr.io/gameservermanagers/gameserver:arma3"
restart: always
volumes: # Set a config where the serverfiles are persisted
- ./arma3-config/serverfiles:/data:z
ports:
- "2344:2344/udp"
- "2344:2344/tcp"
- "2345:2345/tcp"
- "2302-2306:2302-2306/udp"
deploy: # This should be set to allow 8 - 14 GB of RAM
resources:
limits:
memory: 8G
reservations:
memory: 5G