mirror of
https://github.com/simple-login/app.git
synced 2025-02-22 23:02:55 +08:00
v1.0.4
This commit is contained in:
parent
56d99d4480
commit
6ad395f24f
2 changed files with 6 additions and 4 deletions
|
@ -7,6 +7,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [1.0.4] - 2020-02-09
|
||||
Fix duplicate "List-Unsubscribe" email header.
|
||||
|
||||
## [1.0.3] - 2020-01-28
|
||||
|
|
|
@ -61,7 +61,7 @@ docker run --name sl -it --rm \
|
|||
-e RESET_DB=true \
|
||||
-e CONFIG=/code/example.env \
|
||||
-p 7777:7777 \
|
||||
simplelogin/app:1.0.3 python server.py
|
||||
simplelogin/app:1.0.4 python server.py
|
||||
```
|
||||
|
||||
Then open http://localhost:7777, you should be able to login with `john@wick.com/password` account!
|
||||
|
@ -463,7 +463,7 @@ sudo docker run --rm \
|
|||
-v $(pwd)/dkim.pub.key:/dkim.pub.key \
|
||||
-v $(pwd)/simplelogin.env:/code/.env \
|
||||
--network="sl-network" \
|
||||
simplelogin/app:1.0.3 flask db upgrade
|
||||
simplelogin/app:1.0.4 flask db upgrade
|
||||
```
|
||||
|
||||
This command could take a while to download the `simplelogin/app` docker image.
|
||||
|
@ -479,7 +479,7 @@ sudo docker run -d \
|
|||
-p 7777:7777 \
|
||||
--restart always \
|
||||
--network="sl-network" \
|
||||
simplelogin/app:1.0.3
|
||||
simplelogin/app:1.0.4
|
||||
```
|
||||
|
||||
Next run the `email handler`
|
||||
|
@ -493,7 +493,7 @@ sudo docker run -d \
|
|||
-p 20381:20381 \
|
||||
--restart always \
|
||||
--network="sl-network" \
|
||||
simplelogin/app:1.0.3 python email_handler.py
|
||||
simplelogin/app:1.0.4 python email_handler.py
|
||||
```
|
||||
|
||||
### Nginx
|
||||
|
|
Loading…
Reference in a new issue