[](https://discourse.linuxserver.io "post on our community forum.")
[](https://discourse.linuxserver.io "post on our community forum.")
[](https://fleet.linuxserver.io "an online web interface which displays all of our maintained images.")
[](https://fleet.linuxserver.io "an online web interface which displays all of our maintained images.")
[](https://github.com/linuxserver "view the source for all of our repositories.")
[](https://github.com/linuxserver "view the source for all of our repositories.")
[](https://anchor.fm/linuxserverio "on hiatus. Coming back soon (late 2018).")
[](https://opencollective.com/linuxserver "please consider helping us by either donating or contributing to our budget")
[](https://opencollective.com/linuxserver "please consider helping us by either donating or contributing to our budget")
The [LinuxServer.io](https://linuxserver.io) team brings you another container release featuring :-
The [LinuxServer.io](https://linuxserver.io) team brings you another container release featuring :-
...
@@ -22,7 +21,6 @@ Find us at:
...
@@ -22,7 +21,6 @@ Find us at:
*[Discourse](https://discourse.linuxserver.io) - post on our community forum.
*[Discourse](https://discourse.linuxserver.io) - post on our community forum.
*[Fleet](https://fleet.linuxserver.io) - an online web interface which displays all of our maintained images.
*[Fleet](https://fleet.linuxserver.io) - an online web interface which displays all of our maintained images.
*[GitHub](https://github.com/linuxserver) - view the source for all of our repositories.
*[GitHub](https://github.com/linuxserver) - view the source for all of our repositories.
*[Podcast](https://anchor.fm/linuxserverio) - on hiatus. Coming back soon (late 2018).
*[Open Collective](https://opencollective.com/linuxserver) - please consider helping us by either donating or contributing to our budget
*[Open Collective](https://opencollective.com/linuxserver) - please consider helping us by either donating or contributing to our budget
@@ -128,6 +126,18 @@ Container images are configured using parameters passed at runtime (such as thos
...
@@ -128,6 +126,18 @@ Container images are configured using parameters passed at runtime (such as thos
| `-e SUDO_PASSWORD=password` | If this optional variable is set, user will have sudo access in the code-server terminal with the specified password. |
| `-e SUDO_PASSWORD=password` | If this optional variable is set, user will have sudo access in the code-server terminal with the specified password. |
| `-v /config` | Contains all relevant configuration files. |
| `-v /config` | Contains all relevant configuration files. |
## Environment variables from files (Docker secrets)
You can set any environment variable from a file by using a special prepend `FILE__`.
As an example:
```
-e FILE__PASSWORD=/run/secrets/mysecretpassword
```
Will set the environment variable `PASSWORD` based on the contents of the `/run/secrets/mysecretpassword` file.
## User / Group Identifiers
## User / Group Identifiers
When using volumes (`-v` flags) permissions issues can arise between the host OS and the container, we avoid this issue by allowing you to specify the user `PUID` and group `PGID`.
When using volumes (`-v` flags) permissions issues can arise between the host OS and the container, we avoid this issue by allowing you to specify the user `PUID` and group `PGID`.