Skip to content

Commit 8a86d58

Browse files
committed
Fix create /home/talesam/Docker
1 parent 0384515 commit 8a86d58

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

pkgbuild/pkgbuild.install

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,10 @@ post_install() {
99
fi
1010

1111
# 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
12+
echo "Starting the Jellyfin container..."
13+
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"
1416
}
1517

1618
# Executed before package removal

0 commit comments

Comments
 (0)