Files
cloudron-box/test/entrypoint.sh
Girish Ramakrishnan 9bb4c8127e docker based tests
2024-09-22 11:13:26 +02:00

11 lines
177 B
Bash
Executable File

#!/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 "$@"