New Addition: Airsonic-Advanced

This commit is contained in:
2023-09-09 15:48:16 +02:00
parent fac32b3292
commit 933c2e9378
3 changed files with 31 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
.env
+10
View File
@@ -0,0 +1,10 @@
# Uncomment and change the following variables if you want to use them.
#RESTART=unless-stopped
#SYNOLOGY_VOLUME=volume1
#STACK_NAME=airsonicadvanced
#UID=1024
#GID=101
#TZ=Europe/Amsterdam
#AIRSONICADVANCED_CONTAINER_NAME=AirsonicAdvanced
#AIRSONICADVANCED_TAG=latest
#AIRSONICADVANCED_PORT=4040
+20
View File
@@ -0,0 +1,20 @@
services:
# Airsonic-Advanced
airsonicadvanced:
container_name: ${AIRSONICADVANCED_CONTAINER_NAME:-AirsonicAdvanced}
hostname: airsonicadvanced
image: linuxserver/airsonic-advanced:${AIRSONICADVANCED_TAG:-latest}
restart: ${RESTART:-unless-stopped}
healthcheck:
test: curl -f http://localhost:4040/ || exit 1
environment:
PUID: ${UID:-1024}
PGID: ${GID:-101}
TZ: Europe/Amsterdam
ports:
- ${AIRSONICADVANCED_PORT:-4040}:4040
volumes:
- /${SYNOLOGY_VOLUME:-volume1}/docker/${STACK_NAME:-airsonicadvanced}/${AIRSONICADVANCED_CONTAINER_NAME:-AirsonicAdvanced}/config:/config
- /${SYNOLOGY_VOLUME:-volume1}/docker/${STACK_NAME:-airsonicadvanced}/${AIRSONICADVANCED_CONTAINER_NAME:-AirsonicAdvanced}/music:/music
- /${SYNOLOGY_VOLUME:-volume1}/docker/${STACK_NAME:-airsonicadvanced}/${AIRSONICADVANCED_CONTAINER_NAME:-AirsonicAdvanced}/playlists:/playlists
- /${SYNOLOGY_VOLUME:-volume1}/docker/${STACK_NAME:-airsonicadvanced}/${AIRSONICADVANCED_CONTAINER_NAME:-AirsonicAdvanced}/podcasts:/podcasts