add aircast-arm

This commit is contained in:
kev 2021-10-26 10:17:19 +08:00
parent d901467787
commit 129ed7a3fc
4 changed files with 31 additions and 0 deletions

View File

@ -150,6 +150,7 @@ A collection of delicious docker recipes.
## Media
- [x] aircast-arm :musical_note:
- [x] cmus
- [x] cmus-arm
- [x] darkice :musical_note:

18
aircast-arm/Dockerfile Normal file
View File

@ -0,0 +1,18 @@
#
# Dockerfile for aircast-arm
#
FROM alpine:3
MAINTAINER EasyPi Software Foundation
ENV APP_ARCH=arm
ENV APP_FILE=aircast-$APP_ARCH-static
ENV APP_URL=https://github.com/philippe44/AirConnect/raw/master/bin/$APP_FILE
RUN set -xe \
&& apk add --no-cache curl \
&& curl -sSL -o /usr/local/bin/aircast $APP_URL \
&& chmod +x /usr/local/bin/aircast
CMD ["aircast", "-Z"]

6
aircast-arm/README.md Normal file
View File

@ -0,0 +1,6 @@
aircast
=======
[AirConnect][1]: Send audio to UPnP/Sonos/Chromecast players using AirPlay.
[1]: https://github.com/philippe44/AirConnect

View File

@ -0,0 +1,6 @@
version: "3.8"
services:
aircast:
image: easypi/aircast-arm
network_mode: host
restart: unless-stopped