Initial commit

This commit is contained in:
MrFastwind
2026-07-06 01:29:23 +02:00
commit b853aead8c
48 changed files with 5822 additions and 0 deletions

20
docker-compose.yml Normal file
View File

@@ -0,0 +1,20 @@
services:
arma3-web-server:
build: .
container_name: arma3-web
ports:
- "8080:8080"
volumes:
- ./data:/data
# /servers should contain the Arma 3 server install (binary + steamapps/workshop for mods)
- /path/to/your/servers:/servers
environment:
- DATA_DIR=/data
- SERVERFILE_DIR=/servers
- MODS_DIR=/servers/mods
- CFG_DIR=/servers/cfg
- PROFILES_DIR=/servers/profiles
- LISTEN=:8080
- FRONTEND_DIR=/usr/share/arma3-web-server/frontend
- GIN_MODE=release
restart: unless-stopped