chore: update versions
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
# Elasticsearch version
|
||||
ELASTICSEARCH_VERSION=9.3.0
|
||||
ELASTICSEARCH_VERSION=9.4.2
|
||||
|
||||
# Timezone
|
||||
TZ=UTC
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
elasticsearch:
|
||||
<<: *defaults
|
||||
image: docker.elastic.co/elasticsearch/elasticsearch-wolfi:${ELASTICSEARCH_VERSION:-9.3.0}
|
||||
image: docker.elastic.co/elasticsearch/elasticsearch-wolfi:${ELASTICSEARCH_VERSION:-9.4.2}
|
||||
ports:
|
||||
- '${ELASTICSEARCH_HTTP_PORT_OVERRIDE:-9200}:9200'
|
||||
- '${ELASTICSEARCH_TRANSPORT_PORT_OVERRIDE:-9300}:9300'
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Kafka version (Confluent Platform version)
|
||||
KAFKA_VERSION=7.8.0
|
||||
KAFKA_VERSION=8.2.0
|
||||
|
||||
# Timezone
|
||||
TZ=UTC
|
||||
|
||||
@@ -10,7 +10,7 @@ services:
|
||||
# Zookeeper for Kafka coordination
|
||||
zookeeper:
|
||||
<<: *defaults
|
||||
image: ${GLOBAL_REGISTRY:-}confluentinc/cp-zookeeper:${KAFKA_VERSION:-7.8.0}
|
||||
image: ${GLOBAL_REGISTRY:-}confluentinc/cp-zookeeper:${KAFKA_VERSION:-8.2.0}
|
||||
ports:
|
||||
- '${ZOOKEEPER_CLIENT_PORT_OVERRIDE:-2181}:2181'
|
||||
volumes:
|
||||
@@ -43,7 +43,7 @@ services:
|
||||
# Kafka broker
|
||||
kafka:
|
||||
<<: *defaults
|
||||
image: ${GLOBAL_REGISTRY:-}confluentinc/cp-kafka:${KAFKA_VERSION:-7.8.0}
|
||||
image: ${GLOBAL_REGISTRY:-}confluentinc/cp-kafka:${KAFKA_VERSION:-8.2.0}
|
||||
depends_on:
|
||||
zookeeper:
|
||||
condition: service_healthy
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
TZ=UTC
|
||||
|
||||
# MongoDB Version
|
||||
MONGO_VERSION=8.2.3
|
||||
MONGO_VERSION=8.3.3
|
||||
|
||||
# MongoDB root credentials
|
||||
MONGO_INITDB_ROOT_USERNAME=root
|
||||
|
||||
@@ -8,7 +8,7 @@ x-defaults: &defaults
|
||||
|
||||
x-mongo: &mongo
|
||||
<<: *defaults
|
||||
image: ${GLOBAL_REGISTRY:-}mongo:${MONGO_VERSION:-8.2.3}
|
||||
image: ${GLOBAL_REGISTRY:-}mongo:${MONGO_VERSION:-8.3.3}
|
||||
environment:
|
||||
TZ: ${TZ:-UTC}
|
||||
MONGO_INITDB_ROOT_USERNAME: ${MONGO_INITDB_ROOT_USERNAME:-root}
|
||||
@@ -47,6 +47,7 @@ services:
|
||||
- '${MONGO_PORT_OVERRIDE_1:-27017}:27017'
|
||||
volumes:
|
||||
- mongo_data:/data/db
|
||||
- mongo_configdb:/data/configdb
|
||||
- ./secrets/rs0.key:/data/rs0.key:ro
|
||||
|
||||
mongo-init:
|
||||
@@ -110,3 +111,4 @@ services:
|
||||
|
||||
volumes:
|
||||
mongo_data:
|
||||
mongo_configdb:
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# MongoDB Version
|
||||
MONGO_VERSION=8.2.3
|
||||
MONGO_VERSION=8.3.3
|
||||
|
||||
# MongoDB root credentials
|
||||
MONGO_INITDB_ROOT_USERNAME=root
|
||||
|
||||
@@ -8,7 +8,7 @@ x-defaults: &defaults
|
||||
|
||||
x-mongo: &mongo
|
||||
<<: *defaults
|
||||
image: ${GLOBAL_REGISTRY:-}mongo:${MONGO_VERSION:-8.2.3}
|
||||
image: ${GLOBAL_REGISTRY:-}mongo:${MONGO_VERSION:-8.3.3}
|
||||
environment:
|
||||
TZ: ${TZ:-UTC}
|
||||
MONGO_INITDB_ROOT_USERNAME: ${MONGO_INITDB_ROOT_USERNAME:-root}
|
||||
@@ -47,6 +47,7 @@ services:
|
||||
- '${MONGO_PORT_OVERRIDE_1:-27017}:27017'
|
||||
volumes:
|
||||
- mongo1_data:/data/db
|
||||
- mongo1_configdb:/data/configdb
|
||||
- ./secrets/rs0.key:/data/rs0.key:ro
|
||||
|
||||
mongo2:
|
||||
@@ -55,6 +56,7 @@ services:
|
||||
- '${MONGO_PORT_OVERRIDE_2:-27018}:27017'
|
||||
volumes:
|
||||
- mongo2_data:/data/db
|
||||
- mongo2_configdb:/data/configdb
|
||||
- ./secrets/rs0.key:/data/rs0.key:ro
|
||||
|
||||
mongo3:
|
||||
@@ -63,6 +65,7 @@ services:
|
||||
- '${MONGO_PORT_OVERRIDE_3:-27019}:27017'
|
||||
volumes:
|
||||
- mongo3_data:/data/db
|
||||
- mongo3_configdb:/data/configdb
|
||||
- ./secrets/rs0.key:/data/rs0.key:ro
|
||||
|
||||
mongo-init:
|
||||
@@ -134,5 +137,8 @@ services:
|
||||
|
||||
volumes:
|
||||
mongo1_data:
|
||||
mongo1_configdb:
|
||||
mongo2_data:
|
||||
mongo2_configdb:
|
||||
mongo3_data:
|
||||
mongo3_configdb:
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# MongoDB Version
|
||||
MONGO_VERSION=8.2.3
|
||||
MONGO_VERSION=8.3.3
|
||||
|
||||
# MongoDB root credentials
|
||||
MONGO_INITDB_ROOT_USERNAME=root
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
mongo:
|
||||
<<: *defaults
|
||||
image: ${GLOBAL_REGISTRY:-}mongo:${MONGO_VERSION:-8.2.3}
|
||||
image: ${GLOBAL_REGISTRY:-}mongo:${MONGO_VERSION:-8.3.3}
|
||||
environment:
|
||||
TZ: ${TZ:-UTC}
|
||||
MONGO_INITDB_ROOT_USERNAME: ${MONGO_INITDB_ROOT_USERNAME:-root}
|
||||
@@ -19,6 +19,7 @@ services:
|
||||
- '${MONGO_PORT_OVERRIDE:-27017}:27017'
|
||||
volumes:
|
||||
- mongo_data:/data/db
|
||||
- mongo_configdb:/data/configdb
|
||||
healthcheck:
|
||||
test: [CMD, mongosh, --eval, "db.adminCommand('ping')"]
|
||||
interval: 30s
|
||||
@@ -36,3 +37,4 @@ services:
|
||||
|
||||
volumes:
|
||||
mongo_data:
|
||||
mongo_configdb:
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# MySQL Version
|
||||
MYSQL_VERSION=9.4.0
|
||||
MYSQL_VERSION=9.7.0
|
||||
|
||||
# Root password for MySQL
|
||||
MYSQL_ROOT_PASSWORD=password
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
mysql:
|
||||
<<: *defaults
|
||||
image: ${GLOBAL_REGISTRY:-}mysql:${MYSQL_VERSION:-9.4.0}
|
||||
image: ${GLOBAL_REGISTRY:-}mysql:${MYSQL_VERSION:-9.7.0}
|
||||
ports:
|
||||
- '${MYSQL_PORT_OVERRIDE:-3306}:3306'
|
||||
volumes:
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Nginx version
|
||||
NGINX_VERSION=1.28.2-alpine3.22
|
||||
NGINX_VERSION=1.29.3-alpine3.23
|
||||
|
||||
# Timezone
|
||||
TZ=UTC
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
nginx:
|
||||
<<: *defaults
|
||||
image: ${GLOBAL_REGISTRY:-}nginx:${NGINX_VERSION:-1.28.2-alpine3.22}
|
||||
image: ${GLOBAL_REGISTRY:-}nginx:${NGINX_VERSION:-1.29.3-alpine3.23}
|
||||
ports:
|
||||
- '${NGINX_HTTP_PORT_OVERRIDE:-80}:80'
|
||||
- '${NGINX_HTTPS_PORT_OVERRIDE:-443}:443'
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
# Global registry prefix for images (e.g., docker.io/, ghcr.io/, or private registry)
|
||||
GLOBAL_REGISTRY=
|
||||
|
||||
# OpenTelemetry Collector Contrib image version
|
||||
OTEL_COLLECTOR_VERSION=0.153.0
|
||||
|
||||
@@ -6,3 +9,9 @@ DEPLOY_ENV=production
|
||||
|
||||
# OTLP HTTP exporter endpoint (your OTel backend, e.g. OpenObserve, Grafana Tempo, Jaeger)
|
||||
OTEL_EXPORTER_ENDPOINT=http://localhost:4318
|
||||
|
||||
# Resource limits
|
||||
OTEL_COLLECTOR_CPU_LIMIT=1.0
|
||||
OTEL_COLLECTOR_MEMORY_LIMIT=2G
|
||||
OTEL_COLLECTOR_CPU_RESERVATION=0.1
|
||||
OTEL_COLLECTOR_MEMORY_RESERVATION=512M
|
||||
|
||||
@@ -1,7 +1,15 @@
|
||||
x-defaults: &defaults
|
||||
restart: unless-stopped
|
||||
logging:
|
||||
driver: json-file
|
||||
options:
|
||||
max-size: 10m
|
||||
max-file: '3'
|
||||
|
||||
services:
|
||||
collection-agent:
|
||||
image: otel/opentelemetry-collector-contrib:${OTEL_COLLECTOR_VERSION:-0.153.0}
|
||||
restart: unless-stopped
|
||||
<<: *defaults
|
||||
image: ${GLOBAL_REGISTRY:-}otel/opentelemetry-collector-contrib:${OTEL_COLLECTOR_VERSION:-0.153.0}
|
||||
user: '0:0'
|
||||
network_mode: host
|
||||
environment:
|
||||
@@ -14,10 +22,20 @@ services:
|
||||
deploy:
|
||||
resources:
|
||||
limits:
|
||||
cpus: '1.0'
|
||||
memory: 2G
|
||||
logging:
|
||||
driver: json-file
|
||||
options:
|
||||
max-size: 10m
|
||||
max-file: '3'
|
||||
cpus: ${OTEL_COLLECTOR_CPU_LIMIT:-1.0}
|
||||
memory: ${OTEL_COLLECTOR_MEMORY_LIMIT:-2G}
|
||||
reservations:
|
||||
cpus: ${OTEL_COLLECTOR_CPU_RESERVATION:-0.1}
|
||||
memory: ${OTEL_COLLECTOR_MEMORY_RESERVATION:-512M}
|
||||
healthcheck:
|
||||
test:
|
||||
- CMD
|
||||
- wget
|
||||
- --no-verbose
|
||||
- --tries=1
|
||||
- --spider
|
||||
- 'http://localhost:13133/'
|
||||
interval: 30s
|
||||
timeout: 10s
|
||||
retries: 3
|
||||
start_period: 30s
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# PostgreSQL Version
|
||||
POSTGRES_VERSION=17.6
|
||||
POSTGRES_VERSION=17.10
|
||||
|
||||
# Database user
|
||||
POSTGRES_USER=postgres
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
postgres:
|
||||
<<: *defaults
|
||||
image: ${GLOBAL_REGISTRY:-}postgres:${POSTGRES_VERSION:-17.6}
|
||||
image: ${GLOBAL_REGISTRY:-}postgres:${POSTGRES_VERSION:-17.10}
|
||||
environment:
|
||||
TZ: ${TZ:-UTC}
|
||||
POSTGRES_USER: ${POSTGRES_USER:-postgres}
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
GLOBAL_REGISTRY=
|
||||
|
||||
# Redis version
|
||||
REDIS_VERSION=8.2.1-alpine3.22
|
||||
REDIS_VERSION=8.4.0-alpine3.23
|
||||
|
||||
# Password for Redis authentication (leave empty for no password)
|
||||
REDIS_PASSWORD=
|
||||
@@ -22,4 +22,4 @@ REDIS_CPU_RESERVATION=0.1
|
||||
|
||||
# Memory limits
|
||||
REDIS_MEMORY_LIMIT=256M
|
||||
REDIS_MEMORY_RESERVATION=128M
|
||||
REDIS_MEMORY_RESERVATION=128M
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
redis:
|
||||
<<: *defaults
|
||||
image: ${GLOBAL_REGISTRY:-}redis:${REDIS_VERSION:-8.2.1-alpine3.22}
|
||||
image: ${GLOBAL_REGISTRY:-}redis:${REDIS_VERSION:-8.4.0-alpine3.23}
|
||||
ports:
|
||||
- '${REDIS_PORT_OVERRIDE:-6379}:6379'
|
||||
volumes:
|
||||
|
||||
Reference in New Issue
Block a user