diff --git a/README.md b/README.md
index b8d34ea..2b1de7b 100644
--- a/README.md
+++ b/README.md
@@ -57,3 +57,14 @@ docker run -p 8080:80 cinny:latest
 ```
 
 This will forward your `localhost` port 8080 to the container's port 80. You can visit the app in your browser by navigating to `http://localhost:8080`.
+
+Or use Docker Compose
+
+```
+services:
+  cinny:
+    image: git.yiffing.dev/leafus/cinny-improved:latest
+    restart: always
+    ports:
+      - 8444:80
+```