1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 03:48:44 +00:00

add airsonic

This commit is contained in:
kev 2021-03-15 17:36:48 +08:00
parent 3eaf4acf0a
commit d1f2c2b4e2
4 changed files with 55 additions and 3 deletions

@ -152,10 +152,10 @@ A collection of delicious docker recipes.
- [x] ffmpeg - [x] ffmpeg
- [x] ffmpeg-arm - [x] ffmpeg-arm
- [x] ffserver :beetle: - [x] ffserver :beetle:
- [x] icecast - [x] icecast :musical_note:
- [x] live555 :camera: - [x] live555 :camera:
- [x] minidlna - [x] minidlna
- [x] mpd - [x] mpd :musical_note:
- [x] murmur - [x] murmur
- [x] openmeetings :camera: - [x] openmeetings :camera:
- [x] plex :moneybag: - [x] plex :moneybag:
@ -164,7 +164,7 @@ A collection of delicious docker recipes.
- [x] rtmp-client-arm :+1: - [x] rtmp-client-arm :+1:
- [x] rtmp-server :camera: - [x] rtmp-server :camera:
- [x] shairplay-arm - [x] shairplay-arm
- [x] shoutcast - [x] shoutcast :musical_note:
- [x] tesseract - [x] tesseract
- [x] vnc2flv - [x] vnc2flv
- [x] youtube-dl - [x] youtube-dl
@ -285,6 +285,7 @@ A collection of delicious docker recipes.
## 3rd-party (sorted by basename) ## 3rd-party (sorted by basename)
- [x] ghcr.io/linuxserver/airsonic :musical_note:
- [x] archivebox/archivebox - [x] archivebox/archivebox
- [x] docker.bintray.io/jfrog/artifactory-oss - [x] docker.bintray.io/jfrog/artifactory-oss
- [x] tutum/builder - [x] tutum/builder

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

@ -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

@ -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