diff --git a/images/docker-cloud9.md b/images/docker-cloud9.md index b87b6f42b0..fcf7d72042 100755 --- a/images/docker-cloud9.md +++ b/images/docker-cloud9.md @@ -53,8 +53,10 @@ docker create \ -e PGID=1000 \ -e TZ=Europe/London \ -e GITURL=https://github.com/linuxserver/docker-cloud9.git `#optional` \ + -e USERNAME= `#optional` \ + -e PASSWORD= `#optional` \ -p 8000:8000 \ - -v :/code `#optional` \ + -v /path/to/your/code:/code `#optional` \ -v /var/run/docker.sock:/var/run/docker.sock `#optional` \ --restart unless-stopped \ linuxserver/cloud9 @@ -77,9 +79,11 @@ services: - PGID=1000 - TZ=Europe/London - GITURL=https://github.com/linuxserver/docker-cloud9.git #optional + - USERNAME= #optional + - PASSWORD= #optional volumes: volumes: - - :/code #optional + - /path/to/your/code:/code #optional - /var/run/docker.sock:/var/run/docker.sock #optional ports: - 8000:8000 @@ -103,8 +107,10 @@ Docker images are configured using parameters passed at runtime (such as those a | :----: | --- | | `PUID=1000` | for UserID - see below for explanation | | `PGID=1000` | for GroupID - see below for explanation | -| `TZ=Europe/London` | Specify a timezone to use EG Europe/London, this is required for Radarr | +| `TZ=Europe/London` | Specify a timezone to use EG Europe/London | | `GITURL=https://github.com/linuxserver/docker-cloud9.git` | Specify a git repo to checkout on first startup | +| `USERNAME=` | Optionally specify a username for http auth | +| `PASSWORD=` | Optionally specify a password for http auth (if USERNAME and PASSWORD are not set, there will be no http auth) | ### Volume Mappings (`-v`) @@ -147,4 +153,5 @@ Access the webui at http://your-ip:8000, for more information check out [here](h ## Versions +* **07.02.20:** - Add optional http auth. * **02.06.19:** - Initial Release.