mirror of
https://github.com/aljazceru/addons.git
synced 2025-12-17 05:04:21 +01:00
Small fix for LE (#712)
This commit is contained in:
@@ -1,20 +1,31 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 4.1
|
||||||
|
|
||||||
|
- Pin image to Alpine3.10
|
||||||
|
- Bugfix default options with empty dns
|
||||||
|
|
||||||
## 4.0
|
## 4.0
|
||||||
|
|
||||||
- Added support for dns challenges
|
- Added support for dns challenges
|
||||||
|
|
||||||
## 3.0
|
## 3.0
|
||||||
|
|
||||||
- Use our Python base images with cerbot 0.32.0
|
- Use our Python base images with cerbot 0.32.0
|
||||||
|
|
||||||
## 2.3
|
## 2.3
|
||||||
|
|
||||||
- Update certbot to 0.30.2
|
- Update certbot to 0.30.2
|
||||||
|
|
||||||
## 2.2
|
## 2.2
|
||||||
|
|
||||||
- Bugfix not exists jq
|
- Bugfix not exists jq
|
||||||
|
|
||||||
## 2.1
|
## 2.1
|
||||||
|
|
||||||
- Bugfix wrong python package (py2-future)
|
- Bugfix wrong python package (py2-future)
|
||||||
|
|
||||||
## 2.0
|
## 2.0
|
||||||
|
|
||||||
- Update base image
|
- Update base image
|
||||||
- Remove support for TLS-SNI
|
- Remove support for TLS-SNI
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
{
|
{
|
||||||
"build_from": {
|
"build_from": {
|
||||||
"amd64": "homeassistant/amd64-base-python:3.7",
|
"amd64": "homeassistant/amd64-base-python:3.7-alpine3.10",
|
||||||
"i386": "homeassistant/i386-base-python:3.7",
|
"i386": "homeassistant/i386-base-python:3.7-alpine3.10",
|
||||||
"armhf": "homeassistant/armhf-base-python:3.7",
|
"armhf": "homeassistant/armhf-base-python:3.7-alpine3.10",
|
||||||
"armv7": "homeassistant/armv7-base-python:3.7",
|
"armv7": "homeassistant/armv7-base-python:3.7-alpine3.10",
|
||||||
"aarch64": "homeassistant/aarch64-base-python:3.7"
|
"aarch64": "homeassistant/aarch64-base-python:3.7-alpine3.10"
|
||||||
},
|
},
|
||||||
"args": {
|
"args": {
|
||||||
"CERTBOT_VERSION": "0.38.0"
|
"CERTBOT_VERSION": "0.38.0"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "Let's Encrypt",
|
"name": "Let's Encrypt",
|
||||||
"version": "4.0",
|
"version": "4.1",
|
||||||
"slug": "letsencrypt",
|
"slug": "letsencrypt",
|
||||||
"description": "Manage certificate from Let's Encrypt",
|
"description": "Manage certificate from Let's Encrypt",
|
||||||
"url": "https://home-assistant.io/addons/lets_encrypt/",
|
"url": "https://home-assistant.io/addons/lets_encrypt/",
|
||||||
@@ -19,7 +19,8 @@
|
|||||||
"domains": [null],
|
"domains": [null],
|
||||||
"certfile": "fullchain.pem",
|
"certfile": "fullchain.pem",
|
||||||
"keyfile": "privkey.pem",
|
"keyfile": "privkey.pem",
|
||||||
"challenge": "http"
|
"challenge": "http",
|
||||||
|
"dns": {}
|
||||||
},
|
},
|
||||||
"schema": {
|
"schema": {
|
||||||
"email": "email",
|
"email": "email",
|
||||||
|
|||||||
Reference in New Issue
Block a user