Created
August 3, 2021 02:48
-
-
Save Jamesits/00702c0af988bb58d84840a1bc76c0e0 to your computer and use it in GitHub Desktop.
Run GitLab CI runner from non-root user account without it complaining for the "user mode" thing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cat > /etc/systemd/system/gitlab-runner.service.d/override.conf <<EOF | |
[Service] | |
User=gitlab-runner | |
Group=gitlab-runner | |
ExecStartPre=+ln -sf /var/run/podman/podman.sock /var/run/docker.sock | |
ExecStart= | |
ExecStart=strace -e getuid,getgid -e inject=getuid:retval=0 -e inject=getgid:retval=0 -- /usr/bin/gitlab-runner run --working-directory /home/gitlab-runner --config /etc/gitlab-runner/config.toml --service gitlab-runner --user gitlab-runner | |
EOF |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://gitlab.com/gitlab-org/gitlab-runner/-/blob/3d085c49b3ef9886697e6b25c7856da2e1018d2d/commands/user_mode_warning.go#L21 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment