mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-10-10 15:01:27 +02:00
6 lines
152 B
Bash
6 lines
152 B
Bash
#!/bin/sh
|
|
|
|
addgroup -S docker-registry 2>/dev/null
|
|
adduser -S -H -h /dev/null -s /sbin/nologin -D -G docker-registry docker-registry 2>/dev/null
|
|
exit 0
|