-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
configure the browser extensions to point to your DOMAIN:8443
- Loading branch information
Showing
1 changed file
with
4 additions
and
0 deletions.
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
542f2dd
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is a small bug in line 57 (
sed -i "s/443/8443/" ....
) as it keeps prefixing with 8443, 88443, 888443, when doingdocker start / stop
. Just change that line to"s/= 443/= 8443/"
and it should be ok.It would also be nice that port number be in environment variable. Just maybe.
542f2dd
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the report, I will try to fix it ASAP, also adding an environment variable to specify the port.
542f2dd
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@cvladan it's fixed at commit eea02e6
You can also define your own port using MITRO_PORT. Sorry for the delay solving this small bug :p