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