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.
Copy file name to clipboardExpand all lines: .github/workflows/greetings.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,6 @@ jobs:
8
8
steps:
9
9
- uses: actions/first-interaction@v1
10
10
with:
11
-
issue-message: 'Thanks for opening your first issue here! Be sure to follow the [bug](https://github.com/linuxserver/docker-plex-meta-manager/blob/develop/.github/ISSUE_TEMPLATE/issue.bug.yml) or [feature](https://github.com/linuxserver/docker-plex-meta-manager/blob/develop/.github/ISSUE_TEMPLATE/issue.feature.yml) issue templates!'
11
+
issue-message: 'Thanks for opening your first issue here! Be sure to follow the relevant issue templates, or risk having this issue marked as invalid.'
12
12
pr-message: 'Thanks for opening this pull request! Be sure to follow the [pull request template](https://github.com/linuxserver/docker-plex-meta-manager/blob/develop/.github/PULL_REQUEST_TEMPLATE.md)!'
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,7 @@ The architectures supported by this image are:
56
56
| :----: | :----: | ---- |
57
57
| x86-64 | ✅ | amd64-\<version tag\>|
58
58
| arm64 | ✅ | arm64v8-\<version tag\>|
59
-
| armhf| ✅ | arm32v7-\<version tag\>|
59
+
| armhf| ✅ | arm32v7-\<version tag\>|
60
60
61
61
## Version Tags
62
62
@@ -66,7 +66,6 @@ This image provides various versions that are available via tags. Please read th
66
66
| :----: | :----: |--- |
67
67
| latest | ✅ | Stable releases. |
68
68
| develop | ✅ | Latest commits from the develop branch |
69
-
70
69
## Application Setup
71
70
72
71
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.
@@ -93,7 +92,7 @@ services:
93
92
environment:
94
93
- PUID=1000
95
94
- PGID=1000
96
-
- TZ=Europe/London
95
+
- TZ=Etc/UTC
97
96
- PMM_CONFIG=/config/config.yml #optional
98
97
- PMM_TIME=03:00 #optional
99
98
- PMM_RUN=False #optional
@@ -111,7 +110,7 @@ docker run -d \
111
110
--name=plex-meta-manager \
112
111
-e PUID=1000 \
113
112
-e PGID=1000 \
114
-
-e TZ=Europe/London \
113
+
-e TZ=Etc/UTC \
115
114
-e PMM_CONFIG=/config/config.yml `#optional` \
116
115
-e PMM_TIME=03:00 `#optional` \
117
116
-e PMM_RUN=False `#optional` \
@@ -120,6 +119,7 @@ docker run -d \
120
119
-v /path/to/appdata/config:/config \
121
120
--restart unless-stopped \
122
121
lscr.io/linuxserver/plex-meta-manager:develop
122
+
123
123
```
124
124
125
125
## Parameters
@@ -130,7 +130,7 @@ Container images are configured using parameters passed at runtime (such as thos
130
130
| :----: | --- |
131
131
|`-e PUID=1000`| for UserID - see below for explanation |
132
132
|`-e PGID=1000`| for GroupID - see below for explanation |
133
-
|`-e TZ=Europe/London`|Specify a timezone to use EG Europe/London. |
133
+
|`-e TZ=Etc/UTC`|specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). |
134
134
|`-e PMM_CONFIG=/config/config.yml`| Specify a custom config file to use. |
135
135
|`-e PMM_TIME=03:00`| Comma-separated list of times to update each day. Format: `HH:MM`. |
136
136
|`-e PMM_RUN=False`| Set to `True` to run without the scheduler. |
0 commit comments