Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile.standalone
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# Allow using a pre-built postgres-builder image for caching
ARG POSTGRES_BUILDER_IMAGE=""
ARG PG_VERSION=17.2
ARG ALPINE_VERSION=3.22
ARG ALPINE_VERSION=3.24

# Build stage for minimal PostgreSQL
FROM alpine:${ALPINE_VERSION} AS postgres-builder-build
Expand Down Expand Up @@ -112,7 +112,7 @@ RUN uv sync --group dev && \
du -sh .venv

# Final stage - minimal runtime
FROM alpine:3.22
FROM alpine:3.24

# S6 Overlay version
ARG S6_OVERLAY_VERSION=3.2.0.2
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.tck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ services:

# MongoDB for conformance suite storage
tck-mongodb:
image: mongo:8.2.1
image: mongo:8.3.7
container_name: tck-mongodb
volumes:
- tck_mongo_data:/data/db
Expand Down
2 changes: 1 addition & 1 deletion tck/conformance-suite-build/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ version: '3.8'
services:
# MongoDB for conformance suite storage
tck-mongodb:
image: mongo:8.2.1
image: mongo:8.3.7
container_name: tck-mongodb
volumes:
- tck_mongo_data:/data/db
Expand Down
2 changes: 1 addition & 1 deletion tck/docker-compose-tck-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ services:

# MongoDB for conformance suite storage
tck-mongodb:
image: mongo:8.2.1
image: mongo:8.3.7
container_name: tck-mongodb
volumes:
- tck_mongo_data:/data/db
Expand Down
2 changes: 1 addition & 1 deletion tck/docker-compose-tck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ services:

# MongoDB for conformance suite storage
tck-mongodb:
image: mongo:8.2.1
image: mongo:8.3.7
container_name: tck-mongodb
volumes:
- tck_mongo_data:/data/db
Expand Down
2 changes: 1 addition & 1 deletion tck/docker/docker-compose-simple.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: '3.8'
services:
# MongoDB for conformance suite storage
conformance-mongo:
image: mongo:8.2.1
image: mongo:8.3.7
container_name: tck-conformance-mongo
environment:
MONGO_INITDB_ROOT_USERNAME: admin
Expand Down
Loading