mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-24 08:52:15 +02:00
add aircast-arm
This commit is contained in:
parent
d901467787
commit
129ed7a3fc
@ -150,6 +150,7 @@ A collection of delicious docker recipes.
|
|||||||
|
|
||||||
## Media
|
## Media
|
||||||
|
|
||||||
|
- [x] aircast-arm :musical_note:
|
||||||
- [x] cmus
|
- [x] cmus
|
||||||
- [x] cmus-arm
|
- [x] cmus-arm
|
||||||
- [x] darkice :musical_note:
|
- [x] darkice :musical_note:
|
||||||
|
18
aircast-arm/Dockerfile
Normal file
18
aircast-arm/Dockerfile
Normal 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
6
aircast-arm/README.md
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
aircast
|
||||||
|
=======
|
||||||
|
|
||||||
|
[AirConnect][1]: Send audio to UPnP/Sonos/Chromecast players using AirPlay.
|
||||||
|
|
||||||
|
[1]: https://github.com/philippe44/AirConnect
|
6
aircast-arm/docker-compose.yml
Normal file
6
aircast-arm/docker-compose.yml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
version: "3.8"
|
||||||
|
services:
|
||||||
|
aircast:
|
||||||
|
image: easypi/aircast-arm
|
||||||
|
network_mode: host
|
||||||
|
restart: unless-stopped
|
Loading…
Reference in New Issue
Block a user