We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63a3603 commit a6145b6Copy full SHA for a6145b6
1 file changed
pkgbuild/pkgbuild.install
@@ -16,6 +16,12 @@ post_install() {
16
chown "$currentUser:$currentUser" -R "/home/$currentUser/Docker/open-notebook/"
17
fi
18
19
+ # Pull images
20
+ for image in $(grep 'image:' "/home/$currentUser/Docker/open-notebook/docker-compose.yml" | awk '{print $2}'); do
21
+ echo "Please wait, this step takes time."
22
+ docker pull $image 1>/dev/null
23
+ done
24
+
25
# Start container
26
docker compose -f "/home/$currentUser/Docker/open-notebook/docker-compose.yml" up -d
27
}
0 commit comments