Skip to content

Commit

Permalink
readme updates
Browse files Browse the repository at this point in the history
  • Loading branch information
alekangelov committed Dec 17, 2023
1 parent b84915d commit e3b9e3d
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -26,16 +26,18 @@ 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
- SMTP_AUTH_REQUIRED=false
- SMTP_USERNAME=email
- SMTP_PASSWORD=password
- SERVER_HOST=localhost
- SERVER_PORT=80
- SERVER_PORT=3000
```

0 comments on commit e3b9e3d

Please sign in to comment.