From e3b9e3df63dc96777ff8c0f9c9f0fb896e89f061 Mon Sep 17 00:00:00 2001 From: Alek Angelov Date: Sun, 17 Dec 2023 13:26:14 +0100 Subject: [PATCH] readme updates --- readme.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/readme.md b/readme.md index 4cb5474..1b2beb9 100644 --- a/readme.md +++ b/readme.md @@ -17,7 +17,7 @@ action users! ### Docker (not workign just a WIP) ```bash -docker run -d -p 2526:80 -p 2525:2525 --name mailsnag alekangelov/mailsnag@latest +docker run -d -p 2525:2525 -p 3000:3000 --name mailsnag ghcr.io/alekangelov/mailsnag ``` ### Docker Compose @@ -26,10 +26,12 @@ docker run -d -p 2526:80 -p 2525:2525 --name mailsnag alekangelov/mailsnag@lates version: "3" services: mailsnag: - image: alekangelov/mailsnag@latest + image: ghcr.io/alekangelov/mailsnag ports: - - 2526:80 + # access the smtp server at localhost:2525 - 2525:2525 + # access the web ui at http://localhost:3000 + - 3000:3000 env: - SMTP_HOST=localhost - SMTP_PORT=2525 @@ -37,5 +39,5 @@ services: - SMTP_USERNAME=email - SMTP_PASSWORD=password - SERVER_HOST=localhost - - SERVER_PORT=80 + - SERVER_PORT=3000 ```