Skip to content

Latest commit

 

History

History
31 lines (27 loc) · 601 Bytes

self-host-with-docker.md

File metadata and controls

31 lines (27 loc) · 601 Bytes
description
A Guide about how to self host Ree6 with Docker!

Self host 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