{{template "base" .}} {{define "title"}}Deployments - {{.App.Name}} - µPaaS{{end}} {{define "content"}} {{template "nav" .}}
Back to {{.App.Name}}

Deployment History

{{if .Deployments}} {{range .Deployments}}
{{if .FinishedAt.Valid}} {{.Duration}} {{end}}
{{if .CommitSHA.Valid}}
Commit: {{.ShortCommit}}
{{end}} {{if .ImageID.Valid}}
Image: {{slice .ImageID.String 0 24}}...
{{end}} {{if .ContainerID.Valid}}
Container: {{slice .ContainerID.String 0 12}}
{{end}}
{{if or .Logs.Valid (eq .Status "building") (eq .Status "deploying")}}
Build Logs {{if or (eq .Status "success") (eq .Status "failed")}} Download {{end}}

                
{{if .Logs.Valid}}{{end}}
{{end}}
{{end}} {{else}}

No deployments yet

Deploy your application to see the deployment history here.

{{end}}
{{end}}