Skip to content

Commit 7bca854

Browse files
authored
Merge pull request #21 from linuxserver/3.21
2 parents 70b0956 + 2c25a26 commit 7bca854

File tree

4 files changed

+8
-9
lines changed

4 files changed

+8
-9
lines 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.20 as buildstage
3+
FROM ghcr.io/linuxserver/baseimage-alpine:3.21 as buildstage
44

55
# set version label
66
ARG BUILD_DATE
@@ -44,7 +44,7 @@ RUN \
4444
rm -rf \
4545
/tmp/*
4646

47-
FROM ghcr.io/linuxserver/baseimage-alpine-nginx:3.20
47+
FROM ghcr.io/linuxserver/baseimage-alpine-nginx:3.21
4848

4949
ARG BUILD_DATE
5050
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.20 as buildstage
3+
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.21 as buildstage
44

55
# set version label
66
ARG BUILD_DATE
@@ -44,7 +44,7 @@ RUN \
4444
rm -rf \
4545
/tmp/*
4646

47-
FROM ghcr.io/linuxserver/baseimage-alpine-nginx:arm64v8-3.20
47+
FROM ghcr.io/linuxserver/baseimage-alpine-nginx:arm64v8-3.21
4848

4949
ARG BUILD_DATE
5050
ARG VERSION

README.md

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

6161
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`).
6262

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

6565
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).
6666

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

293293
## Versions
294294

295+
* **20.12.24:** - Rebase to Alpine 3.21.
295296
* **27.05.24:** - Existing users should update their nginx confs to avoid http2 deprecation warnings.
296297
* **24.05.24:** - Rebase to Alpine 3.20.
297298
* **02.03.24:** - Updates for changes in 1.8.0. Initial DB migration may take several minutes.

readme-vars.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_
1111
available_architectures:
1212
- {arch: "{{ arch_x86_64 }}", tag: "amd64-latest"}
1313
- {arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"}
14-
# development version
15-
development_versions: false
1614
# container parameters
1715
param_container_name: "{{ project_name }}"
1816
param_usage_include_ports: true
@@ -21,7 +19,6 @@ param_ports:
2119
- {external_port: "443", internal_port: "443", port_desc: "your_spotify HTTPS webui"}
2220
param_usage_include_env: true
2321
param_env_vars:
24-
- {env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London."}
2522
- {env_var: "APP_URL", env_value: "http://localhost", desc: "The protocol and hostname where the app will be accessed."}
2623
- {env_var: "SPOTIFY_PUBLIC", env_value: "", desc: "Your Spotify application client ID."}
2724
- {env_var: "SPOTIFY_SECRET", env_value: "", desc: "Your Spotify application secret."}
@@ -32,7 +29,7 @@ app_setup_block_enabled: true
3229
app_setup_block: |
3330
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`).
3431
35-
The application requires an external [mongodb database](https://hub.docker.com/_/mongo/), supported versions are 4.x, 5.x, and 6.x.
32+
The application requires an external [mongodb database](https://hub.docker.com/_/mongo/), supported versions are 5.x, 6.x, and 7.x.
3633
3734
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).
3835
# init diagram
@@ -94,6 +91,7 @@ init_diagram: |
9491
"your_spotify:latest" <- Base Images
9592
# changelog
9693
changelogs:
94+
- {date: "20.12.24:", desc: "Rebase to Alpine 3.21."}
9795
- {date: "27.05.24:", desc: "Existing users should update their nginx confs to avoid http2 deprecation warnings."}
9896
- {date: "24.05.24:", desc: "Rebase to Alpine 3.20."}
9997
- {date: "02.03.24:", desc: "Updates for changes in 1.8.0. Initial DB migration may take several minutes."}

0 commit comments

Comments
 (0)