1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-26 12:45:20 +03:00
aports/community/docker/docker-engine.pre-install
Jakub Jirutka 3a8f76ba96 community/docker: create docker group for docker-engine instead of docker
dockerd that requires the docker group is installed with the
docker-engine subpackage which can be installed without the docker
package.
2023-09-26 15:57:47 +02:00

5 lines
50 B
Bash

#!/bin/sh
addgroup -S docker 2>/dev/null
exit 0