Aktualizacja konfiguracji Gitea i Redmine po wdrożeniu logowania SSO OIDC

This commit was merged in pull request #1.
This commit is contained in:
Admin
2026-03-19 00:14:23 +01:00
committed by KrzysztofC
parent 2926d1c5af
commit 3c45345728
3 changed files with 6 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
DB_PASSWORD=899fa3aa3cf344b6659b256b1f16be8b
GITEA_DOMAIN=gitea.example.com
GITEA_URL=https://gitea.example.com/
GITEA_URL=http://gitea.archvium.eu:30230/
RUNNER_TOKEN=4fLWQRGyi2Pv2VCrzFLWz6TFgElbrslz0hMjg4p5

View File

@@ -19,7 +19,7 @@ services:
GITEA__database__PASSWD: ${DB_PASSWORD}
GITEA__database__NAME: gitea
GITEA__database__SSL_MODE: disable
GITEA__security__INSTALL_LOCK: "false"
GITEA__security__INSTALL_LOCK: "true"
GITEA__actions__ENABLED: "true"
GITEA__server__DOMAIN: ${GITEA_DOMAIN}
GITEA__server__ROOT_URL: ${GITEA_URL}

View File

@@ -2,6 +2,7 @@ name: redmine-v1
services:
redmine:
image: redmine:5-alpine
container_name: redmine
restart: on-failure
volumes:
- files:/usr/src/redmine/files
@@ -13,16 +14,16 @@ services:
- central_dogma
- default
environment:
- REDMINE_DB_POSTGRES=postgres
- REDMINE_DB_POSTGRES=redmine-db
- REDMINE_DB_USERNAME=redmine
- REDMINE_DB_DATABASE=redmine
- REDMINE_DB_PASSWORD=${REDMINE_DB_PASSWORD}
- REDMINE_SECRET_KEY_BASE=${REDMINE_SECRET_KEY_BASE}
depends_on:
postgres:
redmine-db:
condition: service_healthy
postgres:
redmine-db:
image: postgres:16-alpine
restart: on-failure
volumes: