Skip to content

Commit 3287f6f

Browse files
committed
Fix start docker in install
1 parent 8b48210 commit 3287f6f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

pkgbuild/biglinux-docker-config.install

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,11 @@ post_install() {
77
usermod -aG docker "$user"
88
done
99

10-
systemctl enable --now docker.service
10+
# Enable Docker to start on boot
11+
systemctl enable docker
12+
13+
# Start Docker service
14+
systemctl start docker
1115

1216
# Update current user's groups in the current session
1317
usermod -aG docker "$(id -un)"

0 commit comments

Comments
 (0)