docker-guide
Setting up WizBot with Docker
WORK IN PROGRESS
Installation
version: "3.7"
services:
wizbot:
image: registry.gitlab.com/wiznet/wizbot:latest
depends_on:
- redis
environment:
TZ: Europe/Paris
WizBot_RedisOptions: redis,name=wizbot
#WizBot_ShardRunCommand: dotnet
#WizBot_ShardRunArguments: /app/WizBot.dll {0} {1}
volumes:
- /srv/wizbot/conf/creds.yml:/app/creds.yml:ro
- /srv/wizbot/data:/app/data
redis:
image: redis:4-alpine
sysctls:
- net.core.somaxconn=511
command: redis-server --maxmemory 32M --maxmemory-policy volatile-lru
volumes:
- /srv/wizbot/redis-data:/dataUpdating
Last updated
Was this helpful?