mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-14 03:39:53 +03:00
6 lines
156 B
Bash
6 lines
156 B
Bash
#!/bin/sh
|
|
|
|
addgroup -S docker-auth 2>/dev/null
|
|
adduser -S -D -H -h /dev/null -s /sbin/nologin -G docker-auth -g docker-auth docker-auth 2>/dev/null
|
|
|
|
exit 0
|