Skip to content

Commit 91356a3

Browse files
[Fix] Postgresql container (#2597)
* [Fix] Postgresql container * changelog
1 parent e79808a commit 91356a3

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Demo App version
2-
IMAGE_VERSION=2.1.2
2+
IMAGE_VERSION=2.1.3
33
IMAGE_NAME=ghcr.io/open-telemetry/demo
44
DEMO_VERSION=latest
55

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ the release.
77

88
## Unreleased
99

10+
## 2.1.3
11+
12+
* [chore] Fix postgresql container
13+
([#2597](https://github.com/open-telemetry/opentelemetry-demo/pull/2597))
14+
1015
## 2.1.2
1116

1217
* [chore] add postgresql and opensearch containers to build workflow

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -711,7 +711,7 @@ services:
711711
deploy:
712712
resources:
713713
limits:
714-
memory: 35M
714+
memory: 80M
715715
restart: unless-stopped
716716
ports:
717717
- ${POSTGRES_PORT}

src/postgres/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright The OpenTelemetry Authors
22
# SPDX-License-Identifier: Apache-2.0
33

4-
FROM postgres:17-alpine3.22
4+
FROM postgres:17.6
55

66
COPY ./src/postgres/init.sql /docker-entrypoint-initdb.d/init.sql
77

0 commit comments

Comments
 (0)