We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0384515 commit 8a86d58Copy full SHA for 8a86d58
pkgbuild/pkgbuild.install
@@ -9,8 +9,10 @@ post_install() {
9
fi
10
11
# Start the Jellyfin container using docker-compose
12
- echo "Starting the Jellyfin container..."
13
- docker-compose -f /etc/docker-biglinux/jellyfin/docker-compose.yml up -d
+ echo "Starting the Jellyfin container..."
+
14
+ # Expand ${HOME} and execute docker-compose with eval
15
+ eval "HOME=$HOME docker-compose -f /etc/docker-biglinux/jellyfin/docker-compose.yml up -d"
16
}
17
18
# Executed before package removal
0 commit comments