America's Army 2.5 Dedicated Server with AA Assist support
1.8K
Fully automated Docker image for running an America’s Army 2.5 dedicated server with AA Assist support.
This image installs the full server, maps, textures, Assist libraries, and automatically prepares the environment for hosting multiplayer servers.
This Docker image automatically installs:
Linux x86_64 (Docker host)
Tested on:
Using Docker Compose is the recommended method to manage your server. It simplifies configuration deployment and ensures network isolates properly.
docker-compose.yml FileCreate a new folder on your host machine, navigate into it, and save the following configuration as docker-compose.yml:
version: "3.8"
services:
aa25-server:
image: pporadzisz/aa25-server:latest
container_name: aa25-server
pull_policy: always
ports:
- "1726:1726/udp"
- "1727:1727/udp"
- "1728:1728/udp"
environment:
- PORT=1726
- ADMINPASSWORD=aa25radny2000
- GAMEPASSWORD=
- PLAYERADMIN=radny,player1,player2
- SERVERNAME=The Best Linux Server
- ADMINNAME=radny
- [email protected]
- COLOUR=100,100,100
- CACHESIZEMEGS=512
- MAPVOTE=true
- PLAYERSLOTS=32
restart: unless-stopped
depends_on:
- nginx-proxy
networks:
- aa25-net
nginx-proxy:
image: pporadzisz/nginx-proxy:latest
container_name: nginx-proxy
ports:
- "80:80"
- "443:443"
restart: unless-stopped
networks:
aa25-net:
aliases:
- aao25.com
networks:
aa25-net:
driver: bridge
Ensure your firewall routes the following UDP ports to your Docker host:
| Port | Protocol | Description |
|---|---|---|
| 1726 | UDP | Game Port |
| 1727 | UDP | Query Port |
| 1728 | UDP | Server Management Port |
docker compose up -d
docker compose logs -f
docker compose down
Main directory:
/usr/local/games/armyops
Important directories:
System/
Maps/
Textures/
Sounds/
StaticMeshes/
Animations/
MapList.ini is automatically generated from installed maps.
Location:
System/MapList.ini
Server registration on AA Tracker is REQUIRED for statistics tracking.
If you do not register your server, player statistics, honor, and server activity will NOT be tracked.
Register your server here:
https://aatracker.net/servers
AA Tracker provides:
Without registration:
https://aatracker.net/servers
your.server.ip:1726
Registration becomes active shortly after validation (5 mins).
Always register your server before making it public.
This ensures full compatibility with AA Assist and proper statistics tracking.
America’s Army is property of the United States Army.
This Docker image only automates installation and deployment.
Docker image maintained by repository owner.
Content type
Image
Digest
sha256:7114fc756…
Size
1.6 GB
Last updated
2 months ago
docker pull pporadzisz/aa25-server