Merge pull request #88 from linuxserver/master-3.19

Rebase to 3.19
This commit is contained in:
Adam 2024-03-21 14:10:44 +00:00 committed by GitHub
commit 48e9a11a10
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 10 additions and 19 deletions

View File

@ -1,4 +1,4 @@
FROM ghcr.io/linuxserver/baseimage-alpine:3.18 as buildstage
FROM ghcr.io/linuxserver/baseimage-alpine:3.19 as buildstage
############## build stage ##############
ARG DAAPD_RELEASE
@ -70,7 +70,7 @@ RUN \
mv /tmp/daapd-build/etc/owntone.conf /tmp/daapd-build/etc/owntone.conf.orig && \
rm -rf /tmp/daapd-build/var
############## runtime stage ##############
FROM ghcr.io/linuxserver/baseimage-alpine:3.18
FROM ghcr.io/linuxserver/baseimage-alpine:3.19
# set version label
ARG BUILD_DATE
@ -85,6 +85,7 @@ RUN \
confuse \
dbus \
ffmpeg \
gnutls \
json-c \
libevent \
libgcrypt \

View File

@ -1,4 +1,4 @@
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.18 as buildstage
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.19 as buildstage
############## build stage ##############
ARG DAAPD_RELEASE
@ -70,7 +70,7 @@ RUN \
mv /tmp/daapd-build/etc/owntone.conf /tmp/daapd-build/etc/owntone.conf.orig && \
rm -rf /tmp/daapd-build/var
############## runtime stage ##############
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.18
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.19
# set version label
ARG BUILD_DATE
@ -85,6 +85,7 @@ RUN \
confuse \
dbus \
ffmpeg \
gnutls \
json-c \
libevent \
libgcrypt \

View File

@ -19,27 +19,15 @@ param_container_name: "{{ project_name }}"
param_usage_include_net: true
param_net: "host"
param_net_desc: "Shares host networking with container."
param_usage_include_env: true
param_env_vars:
- {env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London."}
param_usage_include_vols: true
param_volumes:
- {vol_path: "/config", vol_host_path: "/path/to/data", desc: "Where daapd server stores its config and dbase files."}
- {vol_path: "/config", vol_host_path: "/path/to/{{ project_name }}/data", desc: "Where daapd server stores its config and dbase files."}
- {vol_path: "/music", vol_host_path: "/path/to/music", desc: "Map to your music folder."}
param_usage_include_ports: false
param_device_map: false
cap_add_param: false
# optional container parameters
opt_param_usage_include_env: false
opt_param_usage_include_vols: false
opt_param_usage_include_ports: false
opt_param_device_map: false
opt_cap_add_param: false
optional_block_1: false
# application setup block
app_setup_block_enabled: true
app_setup_block: |
Map your music folder, open up itunes on the same LAN to see your music there.
Map your music folder, open up iTunes on the same LAN to see your music there.
The web interface is available at `http://<your ip>:3689`
@ -58,6 +46,7 @@ app_setup_block: |
It is recommended to set the `pipe_autostart` option to `true` in your forked-daapd config.
# changelog
changelogs:
- {date: "20.03.24:", desc: "Rebase to Alpine 3.19."}
- {date: "25.08.23:", desc: "Rebase to Alpine 3.18, remove abandoned libspotify libs."}
- {date: "05.07.23:", desc: "Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf)"}
- {date: "23.02.23:", desc: "Rebase to Alpine 3.17, migrate to s6v3."}