Waveform is a music reviewing discord bot, designed to help facilitate music and album discussions in servers, with a variety of features attached to Spotify, Last.FM, and Discord. It is planned to tie into the work in progress Waveform Reviews site.
You can try out the bot in your own discord server with this invite link: https://discord.com/oauth2/authorize?client_id=828651073136361472&permissions=534723816512&scope=applications.commands%20bot
- Create a directory and add a
docker-compose.yamlfile with the following contents:
services:
discord-bot:
image: ghcr.io/robotzurg/waveformbot:latest
container_name: waveform
restart: unless-stopped
env_file:
- ./.env
volumes:
- ./data:/app/data-
Create a folder named
dataand add the DB files to it. -
Add a
.envfile and add the tokens to it. -
Your directory structure should look like this now:
waveform
└── data/
├── database files
├── .env
├── docker-compose.yaml
- Run the container with
docker compose up -d