mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-21 17:56:53 +02:00
add airsonic
This commit is contained in:
parent
3eaf4acf0a
commit
d1f2c2b4e2
@ -152,10 +152,10 @@ A collection of delicious docker recipes.
|
||||
- [x] ffmpeg
|
||||
- [x] ffmpeg-arm
|
||||
- [x] ffserver :beetle:
|
||||
- [x] icecast
|
||||
- [x] icecast :musical_note:
|
||||
- [x] live555 :camera:
|
||||
- [x] minidlna
|
||||
- [x] mpd
|
||||
- [x] mpd :musical_note:
|
||||
- [x] murmur
|
||||
- [x] openmeetings :camera:
|
||||
- [x] plex :moneybag:
|
||||
@ -164,7 +164,7 @@ A collection of delicious docker recipes.
|
||||
- [x] rtmp-client-arm :+1:
|
||||
- [x] rtmp-server :camera:
|
||||
- [x] shairplay-arm
|
||||
- [x] shoutcast
|
||||
- [x] shoutcast :musical_note:
|
||||
- [x] tesseract
|
||||
- [x] vnc2flv
|
||||
- [x] youtube-dl
|
||||
@ -285,6 +285,7 @@ A collection of delicious docker recipes.
|
||||
|
||||
## 3rd-party (sorted by basename)
|
||||
|
||||
- [x] ghcr.io/linuxserver/airsonic :musical_note:
|
||||
- [x] archivebox/archivebox
|
||||
- [x] docker.bintray.io/jfrog/artifactory-oss
|
||||
- [x] tutum/builder
|
||||
|
7
airsonic/README.md
Normal file
7
airsonic/README.md
Normal file
@ -0,0 +1,7 @@
|
||||
airsonic
|
||||
========
|
||||
|
||||
[Airsonic][1] is a free, web-based media streamer, providing ubiquitious access to your music.
|
||||
|
||||
|
||||
[1]: https://github.com/airsonic/airsonic
|
22
airsonic/arm/docker-compose.yml
Normal file
22
airsonic/arm/docker-compose.yml
Normal file
@ -0,0 +1,22 @@
|
||||
version: "3.8"
|
||||
services:
|
||||
airsonic:
|
||||
image: ghcr.io/linuxserver/airsonic:arm32v7-latest
|
||||
container_name: airsonic
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=Asia/Shanghai
|
||||
# CONTEXT_PATH=<URL_BASE> #optional
|
||||
# JAVA_OPTS=<options> #optional
|
||||
volumes:
|
||||
- ./data/config:/config
|
||||
- ./data/music:/music
|
||||
- ./data/playlists:/playlists
|
||||
- ./data/podcasts:/podcasts
|
||||
- ./data/media:/media
|
||||
ports:
|
||||
- 4040:4040
|
||||
devices:
|
||||
- /dev/snd:/dev/snd
|
||||
restart: unless-stopped
|
22
airsonic/docker-compose.yml
Normal file
22
airsonic/docker-compose.yml
Normal file
@ -0,0 +1,22 @@
|
||||
version: "3.8"
|
||||
services:
|
||||
airsonic:
|
||||
image: ghcr.io/linuxserver/airsonic:amd64-latest
|
||||
container_name: airsonic
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=Asia/Shanghai
|
||||
# CONTEXT_PATH=<URL_BASE> #optional
|
||||
# JAVA_OPTS=<options> #optional
|
||||
volumes:
|
||||
- ./data/config:/config
|
||||
- ./data/music:/music
|
||||
- ./data/playlists:/playlists
|
||||
- ./data/podcasts:/podcasts
|
||||
- ./data/media:/media
|
||||
ports:
|
||||
- 4040:4040
|
||||
devices:
|
||||
- /dev/snd:/dev/snd
|
||||
restart: unless-stopped
|
Loading…
Reference in New Issue
Block a user