Compare commits

...

17 Commits

Author SHA1 Message Date
647f58eeb5 Update postgres Docker tag to v18 2025-09-26 08:01:59 +00:00
693344de05 Update gitea/act_runner Docker tag to v0.2.13 2025-09-14 20:24:32 +00:00
8b233f6386 Update gitea/gitea Docker tag to v1.24.6 2025-09-11 21:31:53 +00:00
e6331473e9 Update postgres Docker tag to v17.6 2025-08-15 16:34:17 +00:00
59b0fedd80 Update gitea/gitea Docker tag to v1.24.5 2025-08-14 00:01:06 +00:00
b65f4bc7a7 Update gitea/gitea Docker tag to v1.24.4 2025-08-05 00:01:08 +00:00
4b83ff1663 Update gitea/gitea Docker tag to v1.24.3 2025-07-15 08:01:28 +00:00
196f8fff2d Update gitea/act_runner Docker tag to v0.2.12 2025-06-26 00:00:59 +00:00
1f5279e6d0 Update gitea/gitea Docker tag to v1.24.2 2025-06-21 00:00:55 +00:00
1f4ea67f5c Update gitea/gitea Docker tag to v1.24.1 2025-06-20 00:01:10 +00:00
076dad028b Update gitea/gitea Docker tag to v1.24.0 2025-06-10 08:01:26 +00:00
e7dc17aeb7 Update gitea/gitea Docker tag to v1.23.8 2025-05-13 12:06:09 +00:00
3b92504056 Update postgres Docker tag to v17.5 2025-05-09 00:00:49 +00:00
08ca3248b7 Change SSH port 2025-05-02 17:16:00 +00:00
824780d570 Enable ENABLE_NOTIFY_MAIL 2025-04-10 12:35:18 +00:00
9009063c59 Merge pull request 'Configure Renovate' (#1) from renovate/configure into main
Reviewed-on: #1
2025-04-10 09:41:42 +00:00
cb0f028bec Add renovate.json 2025-04-10 08:37:48 +00:00
2 changed files with 11 additions and 8 deletions

View File

@@ -2,7 +2,7 @@ name: gitea
services:
server:
image: gitea/gitea:1.23.7
image: gitea/gitea:1.24.6
container_name: gitea
depends_on:
- db_pg17
@@ -14,7 +14,7 @@ services:
- /etc/localtime:/etc/localtime:ro
ports:
#- "3005:3000"
- "2222:22"
- "22:22"
networks:
- internal
- runner
@@ -32,7 +32,6 @@ services:
GITEA__server__ROOT_URL__FILE: /run/secrets/root_url
GITEA__server__DOMAIN__FILE: /run/secrets/domain
GITEA__server__SSH_DOMAIN__FILE: /run/secrets/ssh_domain
GITEA__server__SSH_PORT__FILE: /run/secrets/ssh_port
GITEA__mailer__ENABLED: true
GITEA__mailer__PROTOCOL: smtp+starttls
GITEA__mailer__SMTP_PORT: 587
@@ -45,6 +44,7 @@ services:
GITEA__oauth2_client__ACCOUNT_LINKING: login
GITEA__oauth2_client__USERNAME: nickname
GITEA__openid__ENABLE_OPENID_SIGNIN: false
GITEA__service__ENABLE_NOTIFY_MAIL: true
GITEA__service__DISABLE_REGISTRATION: false
GITEA__service__ALLOW_ONLY_EXTERNAL_REGISTRATION: true
GITEA__service__DEFAULT_ALLOW_CREATE_ORGANIZATION: false
@@ -62,14 +62,13 @@ services:
- root_url
- domain
- ssh_domain
- ssh_port
- mail_server
- mail_user
- mail_pass
- mail_from
runner:
image: gitea/act_runner:0.2.11
image: gitea/act_runner:0.2.13
container_name: gitea_runner
depends_on:
- server
@@ -89,7 +88,7 @@ services:
- runner_token
db_pg17:
image: postgres:17.4
image: postgres:18.0
container_name: gitea_db_pg17
restart: unless-stopped
healthcheck:
@@ -147,8 +146,6 @@ secrets:
file: /srv/docker/secrets/gitea/domain.txt
ssh_domain:
file: /srv/docker/secrets/gitea/ssh_domain.txt
ssh_port:
file: /srv/docker/secrets/gitea/ssh_port.txt
mail_from:
file: /srv/docker/secrets/gitea/mail_from.txt
mail_user:

6
renovate.json Normal file
View File

@@ -0,0 +1,6 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
]
}