19 lines
517 B
YAML
19 lines
517 B
YAML
services:
|
|
lancommander:
|
|
image: lancommander/lancommander:latest
|
|
container_name: lancommander
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Etc/UTC
|
|
# Uncomment the line below to install SteamCMD
|
|
# - STEAMCMD=1
|
|
# Uncomment the line below to install WINE
|
|
# - WINE=1
|
|
volumes:
|
|
- /path/to/app/data:/app/Data
|
|
ports:
|
|
- 1337:1337/tcp # Webinterface
|
|
- 35891:35891/udp # Beacon Broadcast
|
|
- 213:213/udp # IPX Relay
|
|
restart: unless-stopped
|