📖
Ree6
  • 🏠Home
    • Welcome to the Ree6 Wiki!
  • ✨Features
    • Community
    • Music System
  • 📒Database
    • Which Database is supported?
    • H2 as a Server
  • 🤖Bot
    • Self hosting
      • Self host with Pterodactyl
      • Self host with Docker
    • Plugin System
      • Installing Plugins
      • Create Plugins
    • StreamTools
    • Configurations
    • Translations
    • Troubleshooting
  • 🌐Webinterface
    • What is the Webinterface?
    • Self hosting
      • Self host with Pterodactyl
      • Self host with Docker
  • 🌎All-in-One
    • 🐋Docker
  • ⁉️Troubleshooting
    • Migration Failed!
  • 👴Legacy
    • Addon System
      • Make your first Addon
Powered by GitBook
On this page
  1. Bot
  2. Self hosting

Self host with Docker

A Guide about how to self host Ree6 with Docker!

Docker Compose

services:
  ree6:
    image: ree6/bot:latest
    environment:
      config: /opt/ree6/config/config.yml
    volumes:
      - /PATH/bot/storage:/storage
      - /PATH/bot/languages:/languages
      - /PATH/bot/config/:/opt/ree6/config/
    depends_on:
      - db
  db:
    image: mariadb:latest
    environment:
      MYSQL_ROOT_PASSWORD: password
      MYSQL_DATABASE: ree6
      MYSQL_USER: ree6
      MYSQL_PASSWORD: ree6
    volumes:
      - /PATH/db:/var/lib/mysql
    
PreviousSelf host with PterodactylNextPlugin System

Last updated 4 months ago

🤖