use /opt instead of /app

This commit is contained in:
sparklyballs
2017-01-10 20:53:29 +00:00
parent 2241f4302f
commit 583cb377d0
3 changed files with 3 additions and 3 deletions

View File

@@ -24,7 +24,7 @@ RUN \
/tmp/radarr-app.zip -L \
https://leonardogalli.ch/radarr/builds/latest.php?os=mono && \
unzip -d /tmp /tmp/radarr-app.zip && \
mv /tmp/Radar* /app/radarr && \
mv /tmp/Radar* /opt/radarr && \
# clean up
rm -rf \

View File

@@ -3,5 +3,5 @@
# permissions
chown -R abc:abc \
/config \
/app
/opt

View File

@@ -1,6 +1,6 @@
#!/usr/bin/with-contenv bash
cd /app/radarr || exit
cd /opt/radarr || exit
exec \
s6-setuidgid abc mono --debug Radarr.exe \