14 lines
455 B
Plaintext
14 lines
455 B
Plaintext
#!/usr/bin/with-contenv sh
|
|
|
|
cd /${AIRSONIC_DIR}
|
|
exec s6-setuidgid airsonic java -Xmx512m \
|
|
-Dserver.host=0.0.0.0 \
|
|
-Dserver.port=8080 \
|
|
-Dserver.contextPath=/ \
|
|
-Dairsonic.home=${AIRSONIC_DIR}/data \
|
|
-Dairsonic.defaultMusicFolder=${AIRSONIC_DIR}/music \
|
|
-Dairsonic.defaultPodcastFolder=${AIRSONIC_DIR}/podcasts \
|
|
-Dairsonic.defaultPlaylistFolder=${AIRSONIC_DIR}/playlists \
|
|
-Djava.awt.headless=true \
|
|
-jar airsonic.war
|