mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-12-08 22:32:39 +01:00
@@ -1,12 +1,28 @@
|
||||
#!/bin/sh
|
||||
set -e
|
||||
|
||||
ROOT="/gitiles"
|
||||
ROOT=/gitiles
|
||||
PROPERTIES=
|
||||
|
||||
if [ "x$1" != "x" ]; then
|
||||
PROPERTIES="-Dcom.google.gitiles.configPath=$1"
|
||||
PROPERTIES="-Dcom.google.gitiles.configPath=$1"
|
||||
else
|
||||
PROPERTIES="-Dcom.google.gitiles.configPath=/gitfiles.config"
|
||||
cat > /gitfiles.config <<-EOF
|
||||
[gitiles]
|
||||
# Repositories placed here
|
||||
basePath = /home/git
|
||||
# Do not check they are exported
|
||||
exportAll = true
|
||||
# This URL will be displayed as clone URL. DO NOT FORGET TRAILING SLASH!
|
||||
baseGitUrl = git@g.j3ss.co:
|
||||
# Title of site (doh)
|
||||
siteTitle = Gitiles - git.j3ss.co
|
||||
# I dunno why, but it is have to be configured.
|
||||
canonicalHostName = git.j3ss.co
|
||||
EOF
|
||||
fi
|
||||
|
||||
PROPERTIES="$PROPERTIES -Dcom.google.gitiles.sourcePath=$ROOT"
|
||||
|
||||
exec java $PROPERTIES -jar "$ROOT/buck-out/gen/gitiles/gitiles.war"
|
||||
exec java $PROPERTIES -jar "$ROOT/buck-out/gen/gitiles-dev/dev.jar"
|
||||
|
||||
Reference in New Issue
Block a user