1
0
Fork 0
pod-forgejo/README.md

26 lines
569 B
Markdown
Raw Normal View History

2021-01-14 02:55:28 +01:00
# pod-gitea
2021-04-27 15:56:31 +02:00
A gitea image with [pandoc](https://pandoc.org/) support.
2021-01-14 02:55:28 +01:00
## Deploy
### Dokku
```
dokku apps:create gitea
2021-08-27 19:38:46 +02:00
dokku config:set --no-restart gitea TZ=Europe/Rome
2021-01-14 02:55:28 +01:00
dokku config:set --no-restart gitea DOKKU_LETSENCRYPT_EMAIL=example@example.org
dokku postgres:create gitea
dokku postgres:link gitea gitea
dokku storage:mount gitea /var/lib/dokku/data/storage/gitea:/data/gitea
dokku storage:mount gitea /var/lib/dokku/data/storage/gitea/git:/data/git/repositories
git push dokku main:main
dokku letsencrypt gitea
dokku letsencrypt:cron-job --add gitea
```