From c89e6b68722604c55cf6302a7c1c279bfb6b727b Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Tue, 10 Mar 2020 09:35:48 +0100 Subject: [PATCH] Bootstrap gitea app --- Dockerfile | 3 +++ app.json | 9 +++++++++ 2 files changed, 12 insertions(+) create mode 100644 Dockerfile create mode 100644 app.json diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..93f3cbf --- /dev/null +++ b/Dockerfile @@ -0,0 +1,3 @@ +FROM gitea/gitea:1.11.2 + +EXPOSE 80:8080 diff --git a/app.json b/app.json new file mode 100644 index 0000000..77b67c1 --- /dev/null +++ b/app.json @@ -0,0 +1,9 @@ +{ + "name": "gitea", + "description": "Gitea is a painless self-hosted Git service.", + "repository": "https://gitlab.com/autonomic-cooperative/gitea-dokku", + "success_url": "/", + "dokku": { + "plugins": [] + } +}