forked from Roemer/ut99-server
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
28 lines (28 loc) · 920 Bytes
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
version: "3.9"
services:
ut99-server:
build: ./ut99-server
image: motelcoconut/ut99-server:latest
volumes:
- ut99-data:/ut-data
ports:
- 8000:8000
- 5580:5580
- 7777:7777/udp
- 7778:7778/udp
- 8777:8777/udp
environment:
- UT_SERVERNAME='Super Server 9000'
- UT_ADMINNAME='MOTEL COCONUT'
- UT_ADMINEMAIL='[email protected]'
- UT_MOTD1='The best message of the day ever'
- UT_ADMINPWD='superpasswordofdoom'
- UT_WEBADMINUSER='webadmin'
- UT_WEBADMINPWD='superwebpasswordofdoom'
- UT_SERVERURL="CTF-Face?game=BotPack.CTFGame?mutator=BotPack.SniperArena,MapVoteLAv2.BDBMapVote,FlagAnnouncementsV2.FlagAnnouncements,ZeroPingPlus103.ZP_SniperArena,KickIdlePlayers2.KickIdlePlayers2"
- UT_MINPLAYERS_CTF=16
- UT_MINPLAYERS_DM=16
- UT_INITIALBOTS_CTF=16
- UT_INITIALBOTS_DM=16
volumes:
ut99-data: