-
Notifications
You must be signed in to change notification settings - Fork 113
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
Template Daapd Added #687
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
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 |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
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