This commit is contained in:
thelamer
2025-06-24 14:29:29 -04:00
parent 9895976bba
commit 87d748dbcd
3 changed files with 9 additions and 4 deletions

4
Jenkinsfile vendored
View File

@@ -30,8 +30,8 @@ pipeline {
MULTIARCH = 'true' MULTIARCH = 'true'
CI = 'true' CI = 'true'
CI_WEB = 'true' CI_WEB = 'true'
CI_PORT = '3000' CI_PORT = '3001'
CI_SSL = 'false' CI_SSL = 'true'
CI_DELAY = '120' CI_DELAY = '120'
CI_DOCKERENV = 'TZ=US/Pacific' CI_DOCKERENV = 'TZ=US/Pacific'
CI_AUTH = 'user:password' CI_AUTH = 'user:password'

View File

@@ -104,6 +104,11 @@ services:
capabilities: [compute,video,graphics,utility] capabilities: [compute,video,graphics,utility]
``` ```
### Strict reverse proxies
This image uses a self-signed certificate by default. This naturally means the scheme is `https`.
If you are using a reverse proxy which validates certificates, you need to [disable this check for the container](https://docs.linuxserver.io/faq#strict-proxy).
## Usage ## Usage
To help you get started creating a container from this image you can either use docker-compose or the docker cli. To help you get started creating a container from this image you can either use docker-compose or the docker cli.

View File

@@ -19,8 +19,8 @@ repo_vars:
- MULTIARCH = 'true' - MULTIARCH = 'true'
- CI = 'true' - CI = 'true'
- CI_WEB = 'true' - CI_WEB = 'true'
- CI_PORT = '3000' - CI_PORT = '3001'
- CI_SSL = 'false' - CI_SSL = 'true'
- CI_DELAY = '120' - CI_DELAY = '120'
- CI_DOCKERENV = 'TZ=US/Pacific' - CI_DOCKERENV = 'TZ=US/Pacific'
- CI_AUTH = 'user:password' - CI_AUTH = 'user:password'