diff --git a/docs/install.md b/docs/install.md
index 94630d83bea16dfc576e283eec0993c57e06494e..04d69bb88e9e19a5975b79e60470a898817b3dec 100644
--- a/docs/install.md
+++ b/docs/install.md
@@ -187,6 +187,24 @@ docker run \
   serve
 ```
 
+Using docker-compose:
+```yaml
+version: "2.1"
+
+services:
+  ntfy:
+    image: binwiederhier/ntfy
+    container_name: ntfy
+    command:
+      - serve
+    volumes:
+      - /var/cache/ntfy:/var/cache/ntfy
+      - /etc/ntfy:/etc/ntfy
+    ports:
+      - 80:80
+    restart: unless-stopped
+```
+
 Alternatively, you may wish to build a customized Docker image that can be run with fewer command-line arguments and without delivering the configuration file separately.
 ```
 FROM binwiederhier/ntfy