mirror of
https://github.com/MrUnknownDE/redbot-docker-compose.git
synced 2026-04-06 00:31:58 +02:00
22 lines
481 B
YAML
22 lines
481 B
YAML
version: "3.2"
|
|
services:
|
|
redbot:
|
|
container_name: redbot
|
|
image: phasecorex/red-discordbot
|
|
links:
|
|
- redbot_lavalink
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./:/data
|
|
environment:
|
|
- OWNER=155076323612688384 #your Discord ID
|
|
- TZ=Europe/Berlin #your Timezone
|
|
- PUID=1000
|
|
|
|
redbot_lavalink:
|
|
container_name: redbot_lavalink
|
|
image: fredboat/lavalink:dev
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./Lavalink:/opt/Lavalink
|