-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Convertigo: add tips to readme #2059
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Convertigo: add tips to readme #2059
Conversation
convertigo/content.md
Outdated
The default `COOKIE_SAMESITE` value is *empty* and can be defined this way: | ||
|
||
```console | ||
$ docker run -d �name C8O -e COOKIE_SAMESITE=lax -p 28080:28080 convertigo |
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.
$ docker run -d �name C8O -e COOKIE_SAMESITE=lax -p 28080:28080 convertigo | |
$ docker run -d --name C8O -e COOKIE_SAMESITE=lax -p 28080:28080 %%IMAGE%% |
convertigo/content.md
Outdated
The default `SESSION_TIMEOUT` value is *30* and can be defined this way: | ||
|
||
```console | ||
$ docker run -d �name C8O -e SESSION_TIMEOUT=5 -p 28080:28080 convertigo |
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.
$ docker run -d �name C8O -e SESSION_TIMEOUT=5 -p 28080:28080 convertigo | |
$ docker run -d --name C8O -e SESSION_TIMEOUT=5 -p 28080:28080 %%IMAGE%% |
convertigo/content.md
Outdated
The default `DISABLE_SUDO` value is *empty* and can be defined this way: | ||
|
||
```console | ||
$ docker run -d �name C8O -e DISABLE_SUDO=true -p 28080:28080 convertigo |
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.
$ docker run -d �name C8O -e DISABLE_SUDO=true -p 28080:28080 convertigo | |
$ docker run -d --name C8O -e DISABLE_SUDO=true -p 28080:28080 %%IMAGE%% |
This will auto-adjust for the per-architecture pages like amd64/convertigo Co-authored-by: Tianon Gravi <[email protected]>
This will auto-adjust for the per-architecture pages like amd64/convertigo
convertigo/content.md
Outdated
The default `COOKIE_SAMESITE` value is *empty* and can be defined this way: | ||
|
||
```console | ||
$ docker run -d -�name C8O -e COOKIE_SAMESITE=lax -p 28080:28080 %%IMAGE%% |
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.
Looks like your editor is still dropping some weird characters in here? I can take over and push to the branch from here if that'd be helpful.
$ docker run -d -�name C8O -e COOKIE_SAMESITE=lax -p 28080:28080 %%IMAGE%% | |
$ docker run -d --name C8O -e COOKIE_SAMESITE=lax -p 28080:28080 %%IMAGE%% |
convertigo/content.md
Outdated
The default `SESSION_TIMEOUT` value is *30* and can be defined this way: | ||
|
||
```console | ||
$ docker run -d -�name C8O -e SESSION_TIMEOUT=5 -p 28080:28080 %%IMAGE%% |
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.
$ docker run -d -�name C8O -e SESSION_TIMEOUT=5 -p 28080:28080 %%IMAGE%% | |
$ docker run -d --name C8O -e SESSION_TIMEOUT=5 -p 28080:28080 %%IMAGE%% |
convertigo/content.md
Outdated
The default `DISABLE_SUDO` value is *empty* and can be defined this way: | ||
|
||
```console | ||
$ docker run -d -�name C8O -e DISABLE_SUDO=true -p 28080:28080 %%IMAGE%% |
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.
$ docker run -d -�name C8O -e DISABLE_SUDO=true -p 28080:28080 %%IMAGE%% | |
$ docker run -d --name C8O -e DISABLE_SUDO=true -p 28080:28080 %%IMAGE%% |
Thx !