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

6 lines
50 B
Bash

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