Install Docker and Docker Compose
Create docker-compose.yml with the following content:
version: '3.8'
services:
liana:
image: ghcr.io/azorant/liana:latest # or :master
container_name: liana
restart: unless-stopped
environment:
- DISCORD_INVITE=server invite
- TOKEN=bot token
- GUILD_CHANNEL=channel ID for guild events
- LOG_CHANNEL=channel for logging node and track events
- DB=server=db;user=root;password=example;database=liana
db:
image: mariadb
container_name: db
restart: unless-stopped
environment:
MARIADB_ROOT_PASSWORD: example
expose:
- 3306Run docker compose up -d to startup Liana and MariaDB.
That's all!