This repository has been archived on 2020-10-27. You can view files and clone it, but cannot push or open issues or pull requests.
git.autonomic.zone/app.json

34 lines
681 B
JSON

{
"name": "gitea",
"description": "Gitea is a painless self-hosted Git service.",
"repository": "https://gitlab.com/autonomic-cooperative/gitea-dokku",
"dokku": {
"plugins": [
{
"name": "proxy",
"commands": ["proxy:ports-set $APP http:80:3000 tcp:222:22"]
}
]
},
"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"
}
]
}