Renovate Bot
6e9d028c1c
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [codeberg.org/forgejo/forgejo](https://forgejo.org) ([source](https://codeberg.org/forgejo/forgejo)) | major | `7.0` -> `8.0` | --- ### Release Notes <details> <summary>forgejo/forgejo (codeberg.org/forgejo/forgejo)</summary> ### [`v8.0`](https://codeberg.org/forgejo/forgejo/blob/HEAD/RELEASE-NOTES.md#801) The Forgejo v8.0.1 release notes are [available in the v8.0.1 milestone](https://codeberg.org/forgejo/forgejo/milestone/7682). </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40NDAuNyIsInVwZGF0ZWRJblZlciI6IjM3LjQ0MC43IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Reviewed-on: #58 Co-authored-by: Renovate Bot <renovate@git.csprung.de> Co-committed-by: Renovate Bot <renovate@git.csprung.de>
56 lines
1.5 KiB
YAML
56 lines
1.5 KiB
YAML
version: '3.7'
|
|
|
|
# https://codeberg.org/forgejo/-/packages/container/forgejo/versions
|
|
# https://docs.gitea.io/en-us/install-with-docker/
|
|
# https://docs.gitea.io/en-us/customizing-gitea/
|
|
# https://docs.gitea.io/en-us/config-cheat-sheet/
|
|
# https://goauthentik.io/integrations/services/gitea/
|
|
|
|
# set FORGEJO_SETUP_LOCK = false for inital setup in .env
|
|
# create admin account: during setup at bottom of page
|
|
|
|
networks:
|
|
forgejo:
|
|
|
|
services:
|
|
forgejo:
|
|
image: codeberg.org/forgejo/forgejo:8.0
|
|
container_name: forgejo
|
|
restart: "${RESTART:-no}"
|
|
hostname: git
|
|
domainname: ${BASE_DOMAIN}
|
|
environment:
|
|
- USER_UID=1000
|
|
- USER_GID=1000
|
|
|
|
- FORGEJO__database__DB_TYPE=postgres
|
|
- FORGEJO__database__HOST=pg-forgejo
|
|
- FORGEJO__database__NAME=forgejo
|
|
- FORGEJO__database__USER=forgejo
|
|
- FORGEJO__database__PASSWD=${FORGEJO_PG_PWD:-forgejo}
|
|
ports:
|
|
- '${FORGEJO_SSH_PORT}:23'
|
|
volumes:
|
|
- ${BASE_DIR:-/srv}/forgejo/data:/data
|
|
- ./forgejo/app.ini:/data/gitea/conf/app.ini:ro
|
|
- /etc/timezone:/etc/timezone:ro
|
|
- /etc/localtime:/etc/localtime:ro
|
|
depends_on:
|
|
- pg-forgejo
|
|
networks:
|
|
- proxy
|
|
- mail
|
|
- forgejo
|
|
|
|
pg-forgejo:
|
|
image: postgres:16-alpine
|
|
container_name: pg-forgejo
|
|
restart: "${RESTART:-no}"
|
|
environment:
|
|
- POSTGRES_DB=forgejo
|
|
- POSTGRES_USER=forgejo
|
|
- POSTGRES_PASSWORD=${FORGEJO_PG_PWD:-forgejo}
|
|
volumes:
|
|
- ${BASE_DIR:-/srv}/forgejo/psql:/var/lib/postgresql/data
|
|
networks:
|
|
- forgejo
|