diff --git a/README.md b/README.md index 256e4a7..6c3ef83 100644 --- a/README.md +++ b/README.md @@ -110,7 +110,7 @@ services: - PUID=1000 - PGID=1000 - TZ=Etc/UTC - - CHROME_CLI="https://www.linuxserver.io/" #optional + - CHROME_CLI=https://www.linuxserver.io/ #optional volumes: - /path/to/config:/config ports: @@ -129,7 +129,7 @@ docker run -d \ -e PUID=1000 \ -e PGID=1000 \ -e TZ=Etc/UTC \ - -e CHROME_CLI="https://www.linuxserver.io/" `#optional` \ + -e CHROME_CLI=https://www.linuxserver.io/ `#optional` \ -p 3000:3000 \ -p 3001:3001 \ -v /path/to/config:/config \ @@ -150,7 +150,7 @@ Container images are configured using parameters passed at runtime (such as thos | `-e PUID=1000` | for UserID - see below for explanation | | `-e PGID=1000` | for GroupID - see below for explanation | | `-e TZ=Etc/UTC` | specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). | -| `-e CHROME_CLI="https://www.linuxserver.io/"` | Specify one or multiple Chromium CLI flags, this string will be passed to the application in full. | +| `-e CHROME_CLI=https://www.linuxserver.io/` | Specify one or multiple Chromium CLI flags, this string will be passed to the application in full. | | `-v /config` | Users home directory in the container, stores local files and settings | | `--shm-size=` | This is needed for any modern website to function like youtube. | | `--security-opt seccomp=unconfined` | For Docker Engine only, many modern gui apps need this to function on older hosts as syscalls are unknown to Docker. Chromium runs in no-sandbox test mode without it. | diff --git a/readme-vars.yml b/readme-vars.yml index ee0d11c..09799aa 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -34,7 +34,7 @@ custom_params: # optional variables opt_param_usage_include_env: true opt_param_env_vars: - - { env_var: "CHROME_CLI", env_value: "\"https://www.linuxserver.io/\"", desc: "Specify one or multiple Chromium CLI flags, this string will be passed to the application in full."} + - { env_var: "CHROME_CLI", env_value: "https://www.linuxserver.io/", desc: "Specify one or multiple Chromium CLI flags, this string will be passed to the application in full."} opt_security_opt_param: true opt_security_opt_param_vars: - { run_var: "seccomp=unconfined", compose_var: "seccomp:unconfined", desc: "For Docker Engine only, many modern gui apps need this to function on older hosts as syscalls are unknown to Docker. Chromium runs in no-sandbox test mode without it." }