Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Template Daapd Added #687

Merged
merged 1 commit into from
Jan 2, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added templates/daapd/assets/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added templates/daapd/assets/screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
39 changes: 39 additions & 0 deletions templates/daapd/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
import { Output, Services } from "~templates-utils";
import { Input } from "./meta";

export function generate(input: Input): Output {
const services: Services = [];

services.push({
type: "app",
data: {
serviceName: input.appServiceName,
env: [`PUID=1000`, `PGID=1000`, `TZ=Etc/UTC`].join("\n"),
source: {
type: "image",
image: input.appServiceImage,
},
domains: [
{
host: "$(EASYPANEL_DOMAIN)",
path: "/",
port: 3689,
},
],
mounts: [
{
type: "volume",
name: "music",
mountPath: "/music",
},
{
type: "volume",
name: "config",
mountPath: "/config",
},
],
},
});

return { services };
}
70 changes: 70 additions & 0 deletions templates/daapd/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
name: Daapd
description:
Daapd is a robust, open-source DAAP (Digital Audio Access Protocol) server
that allows users to share music libraries over a network. It is designed to
work seamlessly with iTunes, Roku SoundBridges, and other DAAP clients,
providing an efficient and reliable way to stream audio content across
devices. Daapd also supports streaming internet radio, podcasts, and AirPlay
devices. With its powerful backend, Daapd ensures smooth performance, a wide
range of supported formats, and advanced features like library management and
transcoding.
instructions: null
changeLog:
- date: 2024-12-26
description: First Release
links:
- label: Website
url: https://github.com/ejurgensen/forked-daapd
- label: Documentation
url: https://ejurgensen.github.io/forked-daapd/
- label: Github
url: https://github.com/ejurgensen/forked-daapd
contributors:
- name: Ahson Shaikh
url: https://github.com/Ahson-Shaikh
schema:
type: object
required:
- appServiceName
- appServiceImage
properties:
appServiceName:
type: string
title: App Service Name
default: daapd
appServiceImage:
type: string
title: App Service Image
default: lscr.io/linuxserver/daapd:28.10.20241218
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

sometimes you use lscr.io and sometimes you omit it

for linuxserver images you can always use it, it's a proxy/mirror and helps users avoid docker hub rate limits

benefits:
- title: Seamless Audio Streaming
description:
Daapd provides smooth streaming of music libraries across multiple
devices, including iTunes, Roku SoundBridges, and other DAAP-compatible
clients.
- title: Advanced Media Management
description:
Daapd offers features like library organization, metadata management, and
support for multiple audio formats to keep your collection accessible and
well-organized.
- title: Network-Friendly
description:
Daapd is optimized for network performance, ensuring minimal latency and
high-quality audio streaming over both wired and wireless connections.
features:
- title: DAAP Protocol Support
description:
Daapd fully supports the DAAP protocol, allowing devices like iTunes and
other DAAP clients to access and play media libraries seamlessly.
- title: AirPlay Integration
description:
Stream your audio to AirPlay-compatible devices directly through Daapd,
enhancing your home or office audio experience.
- title: Internet Radio and Podcast Support
description:
In addition to local music libraries, Daapd allows streaming of internet
radio stations and podcasts for added entertainment options.
tags:
- DAAP
- Music Server
- Audio Streaming