Skip to content

Commit df615b7

Browse files
authored
Merge pull request #36 from linuxserver/develop-remove-armhf
2 parents 0664bde + 7c533b4 commit df615b7

10 files changed

Lines changed: 37 additions & 106 deletions

File tree

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ trim_trailing_whitespace = false
1515
indent_style = space
1616
indent_size = 2
1717

18-
[{**.sh,root/etc/cont-init.d/**,root/etc/services.d/**}]
18+
[{**.sh,root/etc/s6-overlay/s6-rc.d/**,root/etc/cont-init.d/**,root/etc/services.d/**}]
1919
indent_style = space
2020
indent_size = 4

.github/workflows/greetings.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ jobs:
88
steps:
99
- uses: actions/first-interaction@v1
1010
with:
11-
issue-message: 'Thanks for opening your first issue here! Be sure to follow the [bug](https://github.com/linuxserver/docker-mastodon/blob/develop/.github/ISSUE_TEMPLATE/issue.bug.yml) or [feature](https://github.com/linuxserver/docker-mastodon/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.'
1212
pr-message: 'Thanks for opening this pull request! Be sure to follow the [pull request template](https://github.com/linuxserver/docker-mastodon/blob/develop/.github/PULL_REQUEST_TEMPLATE.md)!'
1313
repo-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/permissions.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name: Permission check
2+
on:
3+
pull_request:
4+
paths:
5+
- '**/run'
6+
- '**/finish'
7+
jobs:
8+
permission_check:
9+
uses: linuxserver/github-workflows/.github/workflows/init-svc-executable-permissions.yml@v1

Dockerfile.armhf

Lines changed: 0 additions & 13 deletions
This file was deleted.

Jenkinsfile

Lines changed: 15 additions & 70 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -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

7171
We 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.

jenkins-vars.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ external_type: custom_json
66
release_type: prerelease
77
release_tag: develop
88
ls_branch: develop
9+
build_armhf: false
910
repo_vars:
1011
- JSON_URL='https://api.github.com/repos/mastodon/mastodon/releases'
1112
- JSON_PATH='first(.[] | select(.prerelease==true)) | .tag_name'

readme-vars.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ development_versions: true
1919
development_versions_items:
2020
- { tag: "latest", desc: "Stable releases." }
2121
- { tag: "develop", desc: "Pre-releases *only*." }
22+
- { tag: "glitch", desc: "[glitch-soc](https://github.com/glitch-soc/mastodon) fork releases." }
2223

2324
# container parameters
2425
common_param_env_vars_enabled: true
@@ -106,6 +107,7 @@ app_setup_block: |
106107
107108
# changelog
108109
changelogs:
110+
- { date: "09.02.23:", desc: "Add Glitch branch." }
109111
- { date: "26.01.23:", desc: "Add aliases for key generation & tootctl to better support secrets." }
110112
- { date: "19.12.22:", desc: "Support separate sidekiq queue instances." }
111113
- { date: "08.11.22:", desc: "Add develop branch." }

root-armhf/etc/cont-init.d/50-armless

Lines changed: 0 additions & 15 deletions
This file was deleted.

root/defaults/nginx/site-confs/default.conf.sample

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ server {
9595
try_files $uri =404;
9696
}
9797

98-
location ^~ /api/v1/streaming/ {
98+
location ^~ /api/v1/streaming {
9999
proxy_set_header Host $host;
100100
proxy_set_header X-Real-IP $remote_addr;
101101
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

0 commit comments

Comments
 (0)