Files
cloudron-box/test/entrypoint.sh

11 lines
177 B
Bash
Raw Normal View History

2024-09-22 11:12:49 +02:00
#!/bin/bash
set -eu
docker_gid=$(stat -c "%g" /run/docker.sock)
addgroup --gid ${docker_gid} --system docker
usermod -aG docker yellowtent
exec su yellowtent --command "$@"