Skip to content
This repository was archived by the owner on Jan 3, 2025. It is now read-only.

Commit 1ec68a5

Browse files
authored
Merge pull request #18 from linuxserver/3.17
2 parents b2d6924 + 8a74ca6 commit 1ec68a5

File tree

25 files changed

+116
-191
lines changed

25 files changed

+116
-191
lines changed

.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/ISSUE_TEMPLATE/issue.bug.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ body:
5353
options:
5454
- x86-64
5555
- arm64
56-
- armhf
5756
validations:
5857
required: true
5958
- type: textarea
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Comment on invalid interaction
2+
on:
3+
issues:
4+
types:
5+
- labeled
6+
jobs:
7+
add-comment-on-invalid:
8+
if: github.event.label.name == 'invalid'
9+
permissions:
10+
issues: write
11+
uses: linuxserver/github-workflows/.github/workflows/invalid-interaction-helper.yml@v1
12+
secrets: inherit

.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-booksonic-air/blob/master/.github/ISSUE_TEMPLATE/issue.bug.yml) or [feature](https://github.com/linuxserver/docker-booksonic-air/blob/master/.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-booksonic-air/blob/master/.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

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
FROM ghcr.io/linuxserver/baseimage-alpine:3.15
1+
# syntax=docker/dockerfile:1
2+
3+
FROM ghcr.io/linuxserver/baseimage-alpine:3.17
24

35
# set version label
46
ARG BUILD_DATE
@@ -15,12 +17,11 @@ LANG="C.UTF-8"
1517
RUN \
1618
echo "**** install runtime packages ****" && \
1719
apk add -U --no-cache \
18-
curl \
1920
ffmpeg \
2021
flac \
2122
fontconfig \
2223
lame \
23-
openjdk8-jre \
24+
openjdk11-jre \
2425
ttf-dejavu && \
2526
echo "**** fix XXXsonic status page ****" && \
2627
find /etc -name "accessibility.properties" -exec rm -fv '{}' + && \
@@ -37,11 +38,13 @@ RUN \
3738
"https://github.com/popeen/Booksonic-Air/releases/download/${BOOKSONIC_AIR_RELEASE}/booksonic.war" && \
3839
echo "**** cleanup ****" && \
3940
rm -rf \
40-
/tmp/*
41+
/tmp/* \
42+
$HOME/.cache
4143

4244
# add local files
4345
COPY root/ /
4446

4547
# ports and volumes
4648
EXPOSE 4040
49+
4750
VOLUME /config

Dockerfile.aarch64

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.15
1+
# syntax=docker/dockerfile:1
2+
3+
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.17
24

35
# set version label
46
ARG BUILD_DATE
@@ -15,12 +17,11 @@ LANG="C.UTF-8"
1517
RUN \
1618
echo "**** install runtime packages ****" && \
1719
apk add -U --no-cache \
18-
curl \
1920
ffmpeg \
2021
flac \
2122
fontconfig \
2223
lame \
23-
openjdk8-jre \
24+
openjdk11-jre \
2425
ttf-dejavu && \
2526
echo "**** fix XXXsonic status page ****" && \
2627
find /etc -name "accessibility.properties" -exec rm -fv '{}' + && \
@@ -37,11 +38,13 @@ RUN \
3738
"https://github.com/popeen/Booksonic-Air/releases/download/${BOOKSONIC_AIR_RELEASE}/booksonic.war" && \
3839
echo "**** cleanup ****" && \
3940
rm -rf \
40-
/tmp/*
41+
/tmp/* \
42+
$HOME/.cache
4143

4244
# add local files
4345
COPY root/ /
4446

4547
# ports and volumes
4648
EXPOSE 4040
49+
4750
VOLUME /config

Dockerfile.armhf

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

0 commit comments

Comments
 (0)