mirror of
https://ops.gitlab.net/gitlab-org/gitlab-build-images.git
synced 2025-12-08 17:42:56 +01:00
13 lines
285 B
Bash
Executable file
13 lines
285 B
Bash
Executable file
#!/bin/sh -e
|
|
|
|
INDEX_DIR=/zoekt/test/index
|
|
|
|
gitlab-zoekt-indexer -index_dir $INDEX_DIR -listen :6060 &
|
|
INDEXER_PID=$!
|
|
|
|
zoekt-webserver -index $INDEX_DIR -rpc -listen :6070 &
|
|
WEBSERVER_PID=$!
|
|
|
|
# Exit if one of the processes fail
|
|
wait $INDEXER_PID || exit 1
|
|
wait $WEBSERVER_PID || exit 1
|