-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -60,7 +60,7 @@ The portal is created using sources of the local repository. | |
**To initiate a portal served under https:** | ||
```bash | ||
sudo docker build --build-arg HTTPS=true -t portal-image . | ||
sudo docker run -e DOMAIN=portal.organisation.org -e [email protected] -p 80:80 -p 443:443 portal-image | ||
sudo docker run -e DOMAIN=portal.organisation.org -e [email protected] --restart always -p 80:80 -p 443:443 portal-image | ||
``` | ||
|
||
`HTTPS`, `DOMAIN` & `MAIL` variables are required to obtain an SSL certificate using let's encrypt. | ||
|