mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-11-08 12:22:15 +01:00
dockerd that requires the docker group is installed with the docker-engine subpackage which can be installed without the docker package.
6 lines
50 B
Bash
6 lines
50 B
Bash
#!/bin/sh
|
|
|
|
addgroup -S docker 2>/dev/null
|
|
|
|
exit 0
|