diff --git a/README.md b/README.md index 143ea8a..4f0a639 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/aircast-arm/Dockerfile b/aircast-arm/Dockerfile new file mode 100644 index 0000000..925a2f7 --- /dev/null +++ b/aircast-arm/Dockerfile @@ -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"] diff --git a/aircast-arm/README.md b/aircast-arm/README.md new file mode 100644 index 0000000..d753782 --- /dev/null +++ b/aircast-arm/README.md @@ -0,0 +1,6 @@ +aircast +======= + +[AirConnect][1]: Send audio to UPnP/Sonos/Chromecast players using AirPlay. + +[1]: https://github.com/philippe44/AirConnect diff --git a/aircast-arm/docker-compose.yml b/aircast-arm/docker-compose.yml new file mode 100644 index 0000000..d36ceb8 --- /dev/null +++ b/aircast-arm/docker-compose.yml @@ -0,0 +1,6 @@ +version: "3.8" +services: + aircast: + image: easypi/aircast-arm + network_mode: host + restart: unless-stopped