summaryrefslogtreecommitdiff
path: root/docker/assets/wrapper
blob: 8bc8370fbc941b120c66f393528d7731c91a1dab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/bash

function sigterm_handler() {
    echo "SIGTERM signal received, try to gracefully shutdown all services..."
    gitlab-ctl stop
}

trap "sigterm_handler; exit" TERM

function entrypoint() {
    /opt/gitlab/embedded/bin/runsvdir-start &
    gitlab-ctl reconfigure # will also start everything
    gitlab-ctl tail # tail all logs
}

if [[ ! -e /etc/gitlab/gitlab.rb ]]; then
	cp /assets/gitlab.rb /etc/gitlab/gitlab.rb
	chmod 0600 /etc/gitlab/gitlab.rb
fi

entrypoint