Modmail Docs
GitHubDonateSetupDiscord Server
  • Introduction
  • Installation
    • Local hosting / VPS
      • Windows
      • MacOS
      • Docker
      • Ubuntu
      • Debian
      • Fedora
      • Alma Linux
      • Logviewer
      • Patreon logviewer
    • Railway
    • Heroku
    • Community Guides
  • Setting up auto-restart
  • Updating
  • Getting Started
  • Usage
    • Plugins
    • Configuration
    • Permissions
  • Frequently Asked Questions
  • OLD DOCS
    • Installation
    • Installation (continued)
    • Color Names
    • Configuration Variables (Config Vars)
    • Configure Modmail and Logviewer
    • Frequently Asked Questions
    • Modmail Usage
    • Updating
    • Video Tutorials
Powered by GitBook
On this page
  • Prerequisites
  • Installing Docker Engine
  • Running the official image for Modmail
  • Building the image locally
  • Updating on Docker

Was this helpful?

Edit on GitHub
  1. Installation
  2. Local hosting / VPS

Docker

Deploy Modmail on Docker.

PreviousMacOSNextUbuntu

Last updated 1 year ago

Was this helpful?

Docker is considered an advanced setup, it is recommended that you understand how Docker works before deciding to use this method.

Prerequisites

  • Supported OS for Docker

  • Docker Engine

  • Docker Compose

Installing Docker Engine

Docker has their own installation page for popular Linux-based distros, read them by visiting the link below:

If you're on a desktop environment, refer to the "Desktop" section of their documentation as Docker Desktop also comes with nice GUI that you manage your deployments with.

For VPS and servers, refer to the "Server" section as you will be needed to learn the CLI commands to run Modmail with Docker.

After the installation process has finished, you can try running the commands below in your terminal to see if Docker and Docker Compose has been installed successfully:

docker --version
docker compose version

You may need to change your Docker Compose command to docker-compose --version depending on the version you have installed.

Running the official image for Modmail

You can pull the latest official image from Modmail repository by using the following command:

docker pull ghcr.io/modmail-dev/modmail:master

This will take some time depending on the speed of your network. It will also update the already existing image if you have previously pulled the same image before.

After that, you can run the bot as a container with the following command:

docker run -d --name modmail \
--env-file /path/to/.env \
--restart always ghcr.io/modmail-dev/modmail:master

After deploying, you can view the logs of your currently running Modmail container with the following command:

docker logs modmail

You can stop your running Modmail container with:

docker stop modmail

Stopping the container does not remove the container files, so you can start it back up with:

docker start modmail

If you want to stop and remove the container completely, you can do so with:

docker rm -f modmail

The -f will forcefully remove and delete the container even if it's currently running. You can omit the flag if the container is already stopped.

Building the image locally

You can also build the image locally on your machine if the repository files are already in your machine. In your Modmail project folder, simply run the build command below:

docker build . -t myname/modmail:latest

The . in the command will use the Dockerfile in the Modmail repository as the build steps. The -t flag will specify the image tag so it's easier for us to differentiate between multiple images in our system. Verify if the image is successfully built with the following command:

docker images

You should be able to see the tag we just used in the list:

Now you can use the docker run command to run your bot using your locally-built image:

docker run -d --name modmail \
--env-file /path/to/.env \
--restart always myname/modmail:latest

Updating on Docker

If your image is created locally, simply replace the docker pull command with git pull and rebuilding your image again.

Make sure to change /path/to/.env to the location of the .env file containing all the variables that you want the bot to start with. Refer to the steps in the to find where to obtain these.

Auto-update is disabled when running Docker as Docker container state is not persistent across restarts. To update your bot, you will need to update the base image by running the docker pull command in the previous step: if your image is based from the official repository. After that, you must recreate your container using the docker rm and docker run command again.

To automate this process on Docker, you can look into running which will auto-update your containers whenever a new image is pushed on the remote repository. Please refer to their documentation for guide and configuration.

Watchtower
Running the official image for Modmail
parent Installation page
A simple illustration explaining how Docker works
LogoInstall Docker EngineDocker Documentation