Docker
Deploy Modmail on Docker.
Last updated
Deploy Modmail on Docker.
Last updated
Docker is considered an advanced setup, it is recommended that you understand how Docker works before deciding to use this method.
Supported OS for Docker
Docker Engine
Docker Compose
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:
You may need to change your Docker Compose command to docker-compose --version
depending on the version you have installed.
You can pull the latest official image from Modmail repository by using the following command:
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:
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 parent Installation page to find where to obtain these.
After deploying, you can view the logs of your currently running Modmail container with the following command:
You can stop your running Modmail container with:
Stopping the container does not remove the container files, so you can start it back up with:
If you want to stop and remove the container completely, you can do so with:
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.
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:
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:
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:
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: Running the official image for Modmail 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.
If your image is created locally, simply replace the docker pull
command with git pull
and rebuilding your image again.
To automate this process on Docker, you can look into running Watchtower 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.