Skip to content

Commit a40f2eb

Browse files
author
Marco Moenig
committed
Update to new version 12.2.0
1 parent a68ad14 commit a40f2eb

File tree

7 files changed

+14
-17
lines changed

7 files changed

+14
-17
lines changed

Changelog

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
1-
Version 3.12.1, 2025-07-03
1+
Version 3.12.2, 2025-07-03
22

3-
Release 3.12.1
3+
Release 3.12.2
44

5-
- Start using privacyidea github source-tree instead of python package index.
6-
- Added new webUI preview parameters. See environment/application-prod.env file for more information.
7-
- Updated resolver.json
8-
- Updated to new version.
5+
- Update to new privacyIDEA Version

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
FROM cgr.dev/chainguard/wolfi-base AS builder
66

77
ARG PYVERSION=3.13
8-
ARG PI_VERSION=3.12.1
9-
ARG PI_REQUIREMENTS=3.12.1
8+
ARG PI_VERSION=3.12.2
9+
ARG PI_REQUIREMENTS=3.12.2
1010
ARG GUNICORN==23.0.0
1111
ARG PSYCOPG2==2.9.10
1212
ARG PYKCS11==1.5.14

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
PI_VERSION := "3.12.1"
2-
PI_VERSION_BUILD := "3.12.1"
1+
PI_VERSION := "3.12.2"
2+
PI_VERSION_BUILD := "3.12.2"
33
IMAGE_NAME := privacyidea-docker:${PI_VERSION}
44

55
BUILDER := docker build

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Sample images from this project can be found here:
7777
| [ghcr.io](https://github.com/gpappsoft/privacyidea-docker/pkgs/container/privacyidea-docker)| ```docker pull ghcr.io/gpappsoft/privacyidea-docker:latest```|
7878

7979
> [!Note]
80-
> ```latest``` tagged image is maybe a pre- or development-release. Please use always a release number (like ```3.12.1```)
80+
> ```latest``` tagged image is maybe a pre- or development-release. Please use always a release number (like ```3.12.2```)
8181
8282
## Quickstart
8383

@@ -130,7 +130,7 @@ You can use *Makefile* targets to build different images with different privacyI
130130

131131
#### Build a specific privacyIDEA version
132132
```
133-
make build PI_VERSION=3.12.1 PI_VERSION_BUILD=3.12.1
133+
make build PI_VERSION=3.12.2 PI_VERSION_BUILD=3.12.2
134134
```
135135

136136
#### Push to a registry
@@ -157,7 +157,7 @@ make distclean
157157

158158
| target | optional ARGS | description | example
159159
---------|----------|---|---------
160-
| ```build ``` | ```PI_VERSION```<br> ```IMAGE_NAME```|Build an image. Optional: specify the version, requirements version and image name| ```make build PI_VERSION=3.12.1 PI_VERSION_BUILD=3.12.1```|
160+
| ```build ``` | ```PI_VERSION```<br> ```IMAGE_NAME```|Build an image. Optional: specify the version, requirements version and image name| ```make build PI_VERSION=3.12.2 PI_VERSION_BUILD=3.12.2```|
161161
| ```push``` | ```REGISTRY```|Tag and push the image to the registry. Optional: specify the registry URI. Defaults to *localhost:5000*| ```make push REGISTRY=docker.io/gpappsoft/privacyidea-docker```|
162162
| ```run``` | ```PORT``` <br> ```TAG``` |Run a standalone container with gunicorn and sqlite. Optional: specify the prefix tag of the container name and listen port. Defaults to *pi* and port *8080*| ```make run TAG=prod PORT=8888```|
163163
| ```secret``` | |Generate secrets to use in an environment file | ```make secret```|
@@ -282,7 +282,7 @@ You can start the stack in the background with console detached using the **-d**
282282

283283
Full example including build with ```make```targets:
284284
```
285-
make cert build push stack PI_VERSION=3.12.1 PI_VERSION_BUILD=3.12.1 TAG=pidev
285+
make cert build push stack PI_VERSION=3.12.2 PI_VERSION_BUILD=3.12.2 TAG=pidev
286286
```
287287
---
288288
Now you can deploy additional containers like OpenLDAP for user realms or Owncloud as a client to test 2FA authentication.

environment/application-dev.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ENVIRONMENT="environment/application-prod.env"
22

33
## PrivacyIDEA
4-
PI_VERSION=3.12.1
4+
PI_VERSION=3.12.2
55
PI_ADMIN=admin
66
PI_ADMIN_PASS=admin
77
PI_ADDRESS=0.0.0.0

environment/application-prod.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ENVIRONMENT="environment/application-prod.env"
22

33
## PrivacyIDEA
4-
PI_VERSION=3.12.1
4+
PI_VERSION=3.12.2
55
PI_ADMIN=admin
66
PI_ADMIN_PASS=admin
77
PI_ADDRESS=0.0.0.0

templates/resolver.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -463,5 +463,5 @@
463463
"event": [],
464464
"periodictask": [],
465465
"privacyideaserver": {},
466-
"privacyIDEA_version": "3.12.1"
466+
"privacyIDEA_version": "3.12.2"
467467
}

0 commit comments

Comments
 (0)