From d1ac81cc4edc127ed1c77bfca5d17c0046a46485 Mon Sep 17 00:00:00 2001 From: MattMckenzy Date: Thu, 15 Feb 2024 22:35:46 -0500 Subject: [PATCH] Bumped to version 1.1.3 --- CHANGELOG.md | 2 +- README.md | 14 ++++++-------- 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 84f4204..80e0f99 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ All notable changes to "Mail2Gotify" will be documented in this file. -## 1.1.2 +## 1.1.3 - Added configuration options to support new certificate types. diff --git a/README.md b/README.md index 3ea0c30..f268122 100644 --- a/README.md +++ b/README.md @@ -53,21 +53,19 @@ volumes: services: mail2gotify: container_name: mail2gotify - entrypoint: - - dotnet - - Mail2Gotify.dll environment: - Services:Mail2Gotify:HostAddress=localhost - - Services:Mail2Gotify:CacheDirectory=/app/cache - - Services:Mail2Gotify:CertLocation=/app/certs/privkey.pfx + - Services:Mail2Gotify:CacheDirectory=/cache + - Services:Mail2Gotify:CertLocation=/certs/exampledomain.crt + - Services:Mail2Gotify:KeyLocation=/certs/exampledomain.key - Services:Gotify:ServiceUri=https://gotify.exampledomain.ca - TZ=America/Toronto image: mattmckenzy/mail2gotify:latest volumes: - - cache:/app/cache + - cache:/cache - /etc/localtime:/etc/localtime:ro - /etc/timezone:/etc/timezone:ro - - /mnt/docker/storage/volumes/swag_data/_data/etc/letsencrypt/live/exampledomain.ca:/app/certs + - /mnt/docker/storage/volumes/nginx_data/_data/keys:/certs restart: always ports: - "587:587" @@ -76,6 +74,6 @@ services: ## Release Notes -### 1.1.2 +### 1.1.3 - Added configuration options to support new certificate types.