26 lines
530 B
JSON
26 lines
530 B
JSON
{
|
|
"name": "gitea",
|
|
"description": "Gitea is a painless self-hosted Git service.",
|
|
"repository": "https://gitlab.com/autonomic-cooperative/gitea-dokku",
|
|
"scripts": {
|
|
"dokku": {
|
|
"predeploy": "bash /app/predeploy.sh",
|
|
"postdeploy": "bash /app/postdeploy.sh"
|
|
}
|
|
},
|
|
"volumes": [
|
|
{
|
|
"host": "/var/lib/gitea",
|
|
"app": "/data"
|
|
},
|
|
{
|
|
"host": "/etc/timezone",
|
|
"app": "/etc/timezone:ro"
|
|
},
|
|
{
|
|
"host": "/etc/localtime",
|
|
"app": "/etc/localtime:ro"
|
|
}
|
|
]
|
|
}
|