From 0546ef76f0e79bfc08f9c22142b6f4538b5b5105 Mon Sep 17 00:00:00 2001 From: Joe Thor Date: Sun, 16 Mar 2025 18:31:11 -0500 Subject: [PATCH] Docker compose file example Adding docker compose file example to documentation. --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 7ca174e..9401a26 100644 --- a/README.md +++ b/README.md @@ -78,9 +78,23 @@ Stay tuned as we continue to expand and improve our collection! ## Self-host/Run +### Docker ```bash docker run -d --name omni-tools --restart unless-stopped -p 8080:80 iib0011/omni-tools:latest ``` +### Docker Compose +``` +version: '3.3' + +services: + omni-tools: + image: iib0011/omni-tools:latest + container_name: omni-tools + restart: unless-stopped + ports: + - "8080:80" + +``` ## Contribute