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 Apr 23, 2024. It is now read-only.
[](https://blog.linuxserver.io"all the things you can do with our containers including How-To guides, opinions and much more!")
@@ -67,6 +66,7 @@ This image provides various versions that are available via tags. Please read th
67
66
| latest | ✅ | Stable releases. |
68
67
| develop | ✅ | Latest commits from the develop branch |
69
68
| nightly | ✅ | Latest commits from the nightly branch |
69
+
70
70
## Application Setup
71
71
72
72
There is a [walkthrough](https://metamanager.wiki/en/latest/home/guides/docker.html#setting-up-the-initial-config-file) available to help get you up and running.
@@ -79,7 +79,7 @@ For more information see the [official wiki](https://metamanager.wiki).
79
79
80
80
## Usage
81
81
82
-
Here are some example snippets to help you get started creating a container.
82
+
To help you get started creating a container from this image you can either use docker-compose or the docker cli.
83
83
84
84
### docker-compose (recommended, [click here for more info](https://docs.linuxserver.io/general/docker-compose))
85
85
@@ -120,12 +120,11 @@ docker run -d \
120
120
-v /path/to/appdata/config:/config \
121
121
--restart unless-stopped \
122
122
lscr.io/linuxserver/plex-meta-manager:latest
123
-
124
123
```
125
124
126
125
## Parameters
127
126
128
-
Container images are configured using parameters passed at runtime (such as those above). These parameters are separated by a colon and indicate `<external>:<internal>` respectively. For example, `-p 8080:80` would expose port `80` from inside the container to be accessible from the host's IP on port `8080` outside the container.
127
+
Containers are configured using parameters passed at runtime (such as those above). These parameters are separated by a colon and indicate `<external>:<internal>` respectively. For example, `-p 8080:80` would expose port `80` from inside the container to be accessible from the host's IP on port `8080` outside the container.
129
128
130
129
| Parameter | Function |
131
130
| :----: | --- |
@@ -146,10 +145,10 @@ You can set any environment variable from a file by using a special prepend `FIL
146
145
As an example:
147
146
148
147
```bash
149
-
-e FILE__PASSWORD=/run/secrets/mysecretpassword
148
+
-e FILE__MYVAR=/run/secrets/mysecretvariable
150
149
```
151
150
152
-
Will set the environment variable `PASSWORD` based on the contents of the `/run/secrets/mysecretpassword` file.
151
+
Will set the environment variable `MYVAR` based on the contents of the `/run/secrets/mysecretvariable` file.
153
152
154
153
## Umask for running applications
155
154
@@ -158,15 +157,20 @@ Keep in mind umask is not chmod it subtracts from permissions based on it's valu
158
157
159
158
## User / Group Identifiers
160
159
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`.
160
+
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`.
162
161
163
162
Ensure any volume directories on the host are owned by the same user you specify and any permissions issues will vanish like magic.
164
163
165
-
In this instance `PUID=1000` and `PGID=1000`, to find yours use `id user` as below:
164
+
In this instance `PUID=1000` and `PGID=1000`, to find yours use `id your_user` as below:
* Recreate a new container with the same docker run parameters as instructed above (if mapped correctly to a host folder, your `/config` folder and settings will be preserved)
207
-
* You can also remove the old dangling images: `docker image prune`
269
+
* You can also remove the old dangling images:
270
+
271
+
```bash
272
+
docker image prune
273
+
```
208
274
209
275
### Via Watchtower auto-updater (only use if you don't remember the original parameters)
210
276
211
277
* Pull the latest image at its tag and replace it with the same env variables in one run:
212
278
213
-
```bash
214
-
docker run --rm \
215
-
-v /var/run/docker.sock:/var/run/docker.sock \
216
-
containrrr/watchtower \
217
-
--run-once plex-meta-manager
218
-
```
279
+
```bash
280
+
docker run --rm \
281
+
-v /var/run/docker.sock:/var/run/docker.sock \
282
+
containrrr/watchtower \
283
+
--run-once plex-meta-manager
284
+
```
219
285
220
286
* You can also remove the old dangling images: `docker image prune`
221
287
222
-
**Note:** We do not endorse the use of Watchtower as a solution to automated updates of existing Docker containers. In fact we generally discourage automated updates. However, this is a useful tool for one-time manual updates of containers where you have forgotten the original parameters. In the long term, we highly recommend using [Docker Compose](https://docs.linuxserver.io/general/docker-compose).
288
+
**warning**: We do not endorse the use of Watchtower as a solution to automated updates of existing Docker containers. In fact we generally discourage automated updates. However, this is a useful tool for one-time manual updates of containers where you have forgotten the original parameters. In the long term, we highly recommend using [Docker Compose](https://docs.linuxserver.io/general/docker-compose).
* We recommend [Diun](https://crazymax.dev/diun/) for update notifications. Other tools that automatically update containers unattended are not recommended or supported.
292
+
**tip**: We recommend [Diun](https://crazymax.dev/diun/) for update notifications. Other tools that automatically update containers unattended are not recommended or supported.
0 commit comments