Bot Updating Documentation

pull/11/head
LinuxServer-CI 2020-02-08 04:28:05 +00:00
rodzic 8eca9c7146
commit 2fd78f3079
1 zmienionych plików z 10 dodań i 3 usunięć

Wyświetl plik

@ -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 <path to your code>:/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:
- <path to your code>:/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.