Skip to content

Commit 58e9a6f

Browse files
committed
Rebase to 3.22
1 parent d0a380c commit 58e9a6f

7 files changed

Lines changed: 11 additions & 7 deletions

File tree

.github/workflows/call_issue_pr_tracker.yml

100755100644
File mode changed.

.github/workflows/call_issues_cron.yml

100755100644
File mode changed.

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1
22

3-
FROM ghcr.io/linuxserver/baseimage-alpine:3.21 AS buildbase
3+
FROM ghcr.io/linuxserver/baseimage-alpine:3.22 AS buildbase
44

55
# set version label
66
ARG BUILD_DATE
@@ -54,7 +54,7 @@ RUN \
5454
rm -rf /app/www/node_modules && \
5555
yarn cache clean
5656

57-
FROM ghcr.io/linuxserver/baseimage-alpine-nginx:3.21
57+
FROM ghcr.io/linuxserver/baseimage-alpine-nginx:3.22
5858

5959
ARG BUILD_DATE
6060
ARG VERSION

Dockerfile.aarch64

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1
22

3-
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.21 as buildbase
3+
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.22 as buildbase
44

55
# set version label
66
ARG BUILD_DATE
@@ -54,7 +54,7 @@ RUN \
5454
rm -rf /app/www/node_modules && \
5555
yarn cache clean
5656

57-
FROM ghcr.io/linuxserver/baseimage-alpine-nginx:arm64v8-3.21
57+
FROM ghcr.io/linuxserver/baseimage-alpine-nginx:arm64v8-3.22
5858

5959
ARG BUILD_DATE
6060
ARG VERSION

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ The architectures supported by this image are:
5757

5858
You have to create a Spotify application through their [developer dashboard](https://developer.spotify.com/dashboard/applications) to get your Client ID and secret. Set the Redirect URI to match your APP_URL address with `/api/oauth/spotify/callback` included after the domain (i.e., `http://localhost/api/oauth/spotify/callback`).
5959

60-
The application requires an external [mongodb database](https://hub.docker.com/_/mongo/), supported versions are 5.x, 6.x, and 7.x.
60+
The application requires an external [mongodb database](https://hub.docker.com/_/mongo/), supported versions are 5+.
6161

6262
This ia an all-in-one container which includes both the server and client components. If you require these to be separate then please use the releases from the [your_spotify repo](https://github.com/Yooooomi/your_spotify).
6363

@@ -289,6 +289,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
289289

290290
## Versions
291291

292+
* **09.07.25:** - Rebase to Alpine 3.22.
292293
* **20.12.24:** - Rebase to Alpine 3.21.
293294
* **27.05.24:** - Existing users should update their nginx confs to avoid http2 deprecation warnings.
294295
* **24.05.24:** - Rebase to Alpine 3.20.

readme-vars.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ app_setup_block_enabled: true
3030
app_setup_block: |
3131
You have to create a Spotify application through their [developer dashboard](https://developer.spotify.com/dashboard/applications) to get your Client ID and secret. Set the Redirect URI to match your APP_URL address with `/api/oauth/spotify/callback` included after the domain (i.e., `http://localhost/api/oauth/spotify/callback`).
3232
33-
The application requires an external [mongodb database](https://hub.docker.com/_/mongo/), supported versions are 5.x, 6.x, and 7.x.
33+
The application requires an external [mongodb database](https://hub.docker.com/_/mongo/), supported versions are 5+.
3434
3535
This ia an all-in-one container which includes both the server and client components. If you require these to be separate then please use the releases from the [your_spotify repo](https://github.com/Yooooomi/your_spotify).
3636
# init diagram
@@ -89,6 +89,7 @@ init_diagram: |
8989
"your_spotify:latest" <- Base Images
9090
# changelog
9191
changelogs:
92+
- {date: "09.07.25:", desc: "Rebase to Alpine 3.22."}
9293
- {date: "20.12.24:", desc: "Rebase to Alpine 3.21."}
9394
- {date: "27.05.24:", desc: "Existing users should update their nginx confs to avoid http2 deprecation warnings."}
9495
- {date: "24.05.24:", desc: "Rebase to Alpine 3.20."}

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
## Version 2024/07/16 - Changelog: https://github.com/linuxserver/docker-your_spotify/commits/main/root/defaults/nginx/site-confs/default.conf.sample
1+
## Version 2025/07/09 - Changelog: https://github.com/linuxserver/docker-your_spotify/commits/main/root/defaults/nginx/site-confs/default.conf.sample
22

33
server {
44
listen 80 default_server;
55
listen [::]:80 default_server;
66
listen 443 ssl default_server;
77
listen [::]:443 ssl default_server;
8+
listen 443 quic reuseport default_server;
9+
listen [::]:443 quic reuseport default_server;
810

911
server_name _;
1012

0 commit comments

Comments
 (0)