9 lines
175 B
Bash
9 lines
175 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
echo "Copying custom Gitlab config to /etc/gitlab/"
|
|
cp /gitlab.rb /etc/gitlab/gitlab.rb
|
|
|
|
echo "Entrypoint finished, launching Gitlab"
|
|
exec "/assets/wrapper" |