You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 6, 2021. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+12-2Lines changed: 12 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,6 @@
5
5
[](https://discourse.linuxserver.io"post on our community forum.")
6
6
[](https://fleet.linuxserver.io"an online web interface which displays all of our maintained images.")
7
7
[](https://github.com/linuxserver"view the source for all of our repositories.")
8
-
[](https://anchor.fm/linuxserverio"on hiatus. Coming back soon (late 2018).")
9
8
[](https://opencollective.com/linuxserver"please consider helping us by either donating or contributing to our budget")
10
9
11
10
The [LinuxServer.io](https://linuxserver.io) team brings you another container release featuring :-
@@ -22,7 +21,6 @@ Find us at:
22
21
*[Discourse](https://discourse.linuxserver.io) - post on our community forum.
23
22
*[Fleet](https://fleet.linuxserver.io) - an online web interface which displays all of our maintained images.
24
23
*[GitHub](https://github.com/linuxserver) - view the source for all of our repositories.
25
-
*[Podcast](https://anchor.fm/linuxserverio) - on hiatus. Coming back soon (late 2018).
26
24
*[Open Collective](https://opencollective.com/linuxserver) - please consider helping us by either donating or contributing to our budget
@@ -146,6 +144,18 @@ Container images are configured using parameters passed at runtime (such as thos
146
144
|`-e STAGING=false`| Set to `true` to retrieve certs in staging mode. Rate limits will be much higher, but the resulting cert will not pass the browser's security test. Only to be used for testing purposes. |
147
145
|`-v /config`| All the config files including the webroot reside here. |
148
146
147
+
## Environment variables from files (Docker secrets)
148
+
149
+
You can set any environment variable from a file by using a special prepend `FILE__`.
150
+
151
+
As an example:
152
+
153
+
```
154
+
-e FILE__PASSWORD=/run/secrets/mysecretpassword
155
+
```
156
+
157
+
Will set the environment variable `PASSWORD` based on the contents of the `/run/secrets/mysecretpassword` file.
158
+
149
159
## User / Group Identifiers
150
160
151
161
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`.
0 commit comments