From 68d83a84720080bba20ffcea2cefc0ed097d3169 Mon Sep 17 00:00:00 2001 From: Nicole Rappe Date: Thu, 17 Jul 2025 06:44:42 -0600 Subject: [PATCH] Add Servers/Email/Mailcow.md --- Servers/Email/Mailcow.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Servers/Email/Mailcow.md diff --git a/Servers/Email/Mailcow.md b/Servers/Email/Mailcow.md new file mode 100644 index 0000000..bb86c06 --- /dev/null +++ b/Servers/Email/Mailcow.md @@ -0,0 +1,18 @@ +## Purpose +The purpose of this document is to illustrate how to deploy Mailcow in a dockerized format. + +!!! note "Assumptions" + It is assumed that you are deploying Mailcow into an existing Ubuntu Server environment. If you are using a different operating system, refer to the [official documentation](https://docs.mailcow.email/getstarted/install/). + +### Setting Up Docker +Go ahead and set up docker and docker-compose with the following commands: +```bash +sudo su # (1) +curl -sSL https://get.docker.com/ | CHANNEL=stable sh # (2) +apt install docker-compose-plugin # (2) +systemctl enable --now docker # (3) +``` + +1. Make yourself root. +2. Install `Docker` and `Docker-Compose` +3. Make docker run automatically when the server is booted. \ No newline at end of file