@@ -55,7 +55,7 @@ The architectures supported by this image are:
5555| :----: | :----: | ---- |
5656| x86-64 | ✅ | amd64-\< version tag\> |
5757| arm64 | ✅ | arm64v8-\< version tag\> |
58- | armhf| ❌ | |
58+ | armhf | ❌ | |
5959
6060## Version Tags
6161
@@ -65,7 +65,7 @@ This image provides various versions that are available via tags. Please read th
6565| :----: | :----: | --- |
6666| latest | ✅ | Stable releases. |
6767| develop | ✅ | Pre-releases * only* . |
68-
68+ | glitch | ✅ | [ glitch-soc ] ( https://github.com/glitch-soc/mastodon ) fork releases. |
6969## Application Setup
7070
7171We provide aliases for the common commands that execute in the correct context so that environment variables from secrets are available to them:
@@ -112,7 +112,7 @@ services:
112112 environment :
113113 - PUID=1000
114114 - PGID=1000
115- - TZ=America/New_York
115+ - TZ=Etc/UTC
116116 - LOCAL_DOMAIN=example.com
117117 - REDIS_HOST=redis
118118 - REDIS_PORT=6379
@@ -161,7 +161,7 @@ docker run -d \
161161 --name=mastodon \
162162 -e PUID=1000 \
163163 -e PGID=1000 \
164- -e TZ=America/New_York \
164+ -e TZ=Etc/UTC \
165165 -e LOCAL_DOMAIN=example.com \
166166 -e REDIS_HOST=redis \
167167 -e REDIS_PORT=6379 \
@@ -200,6 +200,7 @@ docker run -d \
200200 -v /path/to/appdata/config:/config \
201201 --restart unless-stopped \
202202 lscr.io/linuxserver/mastodon:develop
203+
203204```
204205
205206## Parameters
@@ -212,7 +213,7 @@ Container images are configured using parameters passed at runtime (such as thos
212213| ` -p 443 ` | Port for web frontend |
213214| ` -e PUID=1000 ` | for UserID - see below for explanation |
214215| ` -e PGID=1000 ` | for GroupID - see below for explanation |
215- | ` -e TZ=America/New_York ` | Specify a timezone to use EG America/New_York |
216+ | ` -e TZ=Etc/UTC ` | specify a timezone to use, see this [ list ] ( https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List ) . |
216217| ` -e LOCAL_DOMAIN=example.com ` | This is the unique identifier of your server in the network. It cannot be safely changed later. |
217218| ` -e REDIS_HOST=redis ` | Redis server hostname |
218219| ` -e REDIS_PORT=6379 ` | Redis port |
@@ -357,6 +358,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
357358
358359## Versions
359360
361+ * ** 09.02.23:** - Add Glitch branch.
360362* ** 26.01.23:** - Add aliases for key generation & tootctl to better support secrets.
361363* ** 19.12.22:** - Support separate sidekiq queue instances.
362364* ** 08.11.22:** - Add develop branch.
0 commit comments