forked from JetBrains/teamcity-docker-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run-server.ps1
41 lines (32 loc) · 1.44 KB
/
run-server.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
function coalesce($a, $b) { if ($a -ne $null) { $a } else { $b } }
Write-Host @"
Welcome to TeamCity Server Docker container
* Installation directory: $Env:TEAMCITY_DIST
* Logs directory: $Env:TEAMCITY_LOGS
* Data directory: $Env:TEAMCITY_DATA_PATH
"@
# Setting default values if variables not present
$TEAMCITY_DIST = coalesce $Env:TEAMCITY_DIST 'C:\TeamCity'
$TEAMCITY_CONTEXT = coalesce $Env:TEAMCITY_CONTEXT 'ROOT'
$TEAMCITY_STOP_WAIT_TIME = coalesce $Env:TEAMCITY_STOP_WAIT_TIME 60
$TEAMCITY_SERVER_SCRIPT = ('{0}\bin\teamcity-server.bat' -f $TEAMCITY_DIST)
$Env:TEAMCITY_LOGS = coalesce $Env:TEAMCITY_LOGS ('{0}\logs' -f $TEAMCITY_DIST)
if (Test-Path -Path $Env:TEAMCITY_LOGS) {
Get-ChildItem $Env:TEAMCITY_LOGS -Filter "*.pid" | ForEach-Object { Remove-Item $_.FullName -Force }
}
if ($TEAMCITY_CONTEXT -ne 'ROOT') {
$current = Get-ChildItem ('{0}\webapps' -f $TEAMCITY_DIST) -Depth 0 -Name
if ($current -ne $TEAMCITY_CONTEXT) {
$currentPath = ('{0}\webapps\{1}' -f $TEAMCITY_DIST, $current)
$destinationPath = ('{0}\webapps\{1}' -f $TEAMCITY_DIST, $TEAMCITY_CONTEXT)
Move-Item -Path $currentPath -Destination $destinationPath
}
}
# Set traps to gently shutdown server on `docker stop`, `docker restart` or `docker kill -s 15`
Trap {
&$TEAMCITY_SERVER_SCRIPT stop $TEAMCITY_STOP_WAIT_TIME -force
exit $LastExitCode
}
# Start and wait for exit
&$TEAMCITY_SERVER_SCRIPT run
exit $LastExitCode