]> vgcfreebox.myrthtech.pt Git - alentejosemlei.git/blob - docker-compose.yaml
parallel llm access with python asyncio
[alentejosemlei.git] / docker-compose.yaml
1 services:
2 redis:
3 image: redis:latest
4 container_name: nwn_redis
5 ports:
6 - "6380:6379"
7 restart: unless-stopped
8 nwserver:
9 image: nwnxee/unified:latest
10 container_name: nwn_game_server
11 depends_on:
12 - redis
13 ports:
14 - "5121:5121/udp"
15 environment:
16 - NWN_SERVERNAME=Alentejo Sem Lei
17 - NWN_MODULE=Smart NPC
18 - NWN_PUBLICSERVER=0
19 - NWNX_CORE_SKIP=n
20 - NWNX_REDIS_SKIP=n
21 - NWNX_REDIS_HOST=redis
22 volumes:
23 - ./server_data:/nwn/home
24 restart: unless-stopped