{{template "base" .}} {{define "title"}}{{.App.Name}} - µPaaS{{end}} {{define "content"}} {{template "nav" .}}
Back to Dashboard
{{template "alert-success" .}} {{template "alert-error" .}}

{{.App.Name}}

{{.App.Status}}

{{.App.RepoURL}}@{{.App.Branch}}

Edit

Deploy Key

Add this SSH public key to your repository as a read-only deploy key:

{{.DeployKey}}

Webhook URL

Add this URL as a push webhook in your Gitea repository:

{{.WebhookURL}}

Environment Variables

{{if .EnvVars}}
{{range .EnvVars}} {{end}}
Key Value Actions
{{.Key}} {{.Value}}
{{end}}

Docker Labels

{{range .Labels}} {{end}}
Key Value Actions
upaas.id {{.App.ID}} System
{{.Key}} {{.Value}}

Volume Mounts

{{if .Volumes}}
{{range .Volumes}} {{end}}
Host Path Container Path Mode Actions
{{.HostPath}} {{.ContainerPath}} {{if .ReadOnly}} Read-only {{else}} Read-write {{end}}
{{end}}

Port Mappings

{{if .Ports}}
{{range .Ports}} {{end}}
Host Port Container Port Protocol Actions
{{.HostPort}} {{.ContainerPort}} {{if eq .Protocol "udp"}} UDP {{else}} TCP {{end}}
{{end}}

Container Logs

Loading...
Loading container logs...

Recent Deployments

View All
{{if .Deployments}}
{{range .Deployments}} {{end}}
Finished Duration Status Commit
{{.FinishedAtFormatted}} {{if .Duration}}{{.Duration}}{{else}}-{{end}} {{if eq .Status "success"}} Success {{else if eq .Status "failed"}} Failed {{else if eq .Status "building"}} Building {{else if eq .Status "deploying"}} Deploying {{else}} {{.Status}} {{end}} {{.ShortCommit}}
{{else}}

No deployments yet.

{{end}}

Last Deployment Build Logs

{{if .LatestDeployment}}{{.LatestDeployment.Status}}{{end}}
{{if .LatestDeployment}}Loading build logs...{{else}}No deployments yet{{end}}

Danger Zone

Deleting this app will remove all configuration and deployment history. This action cannot be undone.

{{end}}