Skip to content
Closed
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
2 changes: 1 addition & 1 deletion docs/fragments/compose/influxdb.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ The following environment variables can be configured:

| Variable | Default Value | Description |
|----------|---------------|-------------|
| `INFLUXDB_VERSION` | `2` | |
| `INFLUXDB_VERSION` | `2.8.0` | |
| `INFLUXDB_PORT` | `8086` | |
| `INFLUXDB_ADMIN_USER` | `admin` | |
| `INFLUXDB_ADMIN_PASSWORD` | `adminpassword` | |
Expand Down
2 changes: 1 addition & 1 deletion docs/fragments/compose/postgresql.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ The following environment variables can be configured:

| Variable | Default Value | Description |
|----------|---------------|-------------|
| `POSTGRES_VERSION` | `18` | |
| `POSTGRES_VERSION` | `18.3` | |
| `POSTGRES_USER` | `postgres` | |
| `POSTGRES_PASSWORD` | `postgres` | |
| `POSTGRES_DB` | `postgres` | |
Expand Down
2 changes: 1 addition & 1 deletion docs/fragments/compose/rabbitmq.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ The following environment variables can be configured:

| Variable | Default Value | Description |
|----------|---------------|-------------|
| `RABBITMQ_VERSION` | `4-management-alpine` | |
| `RABBITMQ_VERSION` | `4.2.5-management-alpine` | |
| `RABBITMQ_AMQP_PORT` | `5672` | |
| `RABBITMQ_UI_PORT` | `15672` | |
| `RABBITMQ_USER` | `guest` | |
Expand Down
2 changes: 1 addition & 1 deletion docs/fragments/compose/redis.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ The following environment variables can be configured:

| Variable | Default Value | Description |
|----------|---------------|-------------|
| `REDIS_VERSION` | `8` | |
| `REDIS_VERSION` | `8.4.2` | |
| `REDIS_PORT` | `6379` | |

## Environment File
Expand Down
2 changes: 1 addition & 1 deletion docs/fragments/compose/traefik.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ The following environment variables can be configured:

| Variable | Default Value | Description |
|----------|---------------|-------------|
| `TRAEFIK_VERSION` | `v3.3` | |
| `TRAEFIK_VERSION` | `v3.6.13` | |
| `TRAEFIK_HTTP_PORT` | `80` | |
| `TRAEFIK_HTTPS_PORT` | `443` | |
| `TRAEFIK_DASHBOARD_PORT` | `8080` | |
Expand Down
2 changes: 1 addition & 1 deletion docs/fragments/compose/valkey.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ The following environment variables can be configured:

| Variable | Default Value | Description |
|----------|---------------|-------------|
| `VALKEY_VERSION` | `9` | |
| `VALKEY_VERSION` | `9.0.3` | |
| `VALKEY_PORT` | `6379` | |

## Environment File
Expand Down
2 changes: 1 addition & 1 deletion fragments/compose/influxdb.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "influxdb",
"description": "InfluxDB time series database",
"variables": {
"INFLUXDB_VERSION": "2",
"INFLUXDB_VERSION": "2.8.0",
"INFLUXDB_PORT": "8086",
"INFLUXDB_ADMIN_USER": "admin",
"INFLUXDB_ADMIN_PASSWORD": "adminpassword",
Expand Down
2 changes: 1 addition & 1 deletion fragments/compose/influxdb.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
influxdb:
image: influxdb:${INFLUXDB_VERSION:-2}
image: influxdb:${INFLUXDB_VERSION:-2.8.0}
ports:
- ${INFLUXDB_PORT:-8086}:8086
environment:
Expand Down
2 changes: 1 addition & 1 deletion fragments/compose/postgresql.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "postgresql",
"description": "PostgreSQL database service",
"variables": {
"POSTGRES_VERSION": "18",
"POSTGRES_VERSION": "18.3",
"POSTGRES_USER": "postgres",
"POSTGRES_PASSWORD": "postgres",
"POSTGRES_DB": "postgres",
Expand Down
2 changes: 1 addition & 1 deletion fragments/compose/postgresql.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
db:
image: postgres:${POSTGRES_VERSION:-18}
image: postgres:${POSTGRES_VERSION:-18.3}
environment:
POSTGRES_USER: ${POSTGRES_USER:-postgres}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-postgres}
Expand Down
2 changes: 1 addition & 1 deletion fragments/compose/rabbitmq.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "rabbitmq",
"description": "RabbitMQ message broker with Management UI enabled",
"variables": {
"RABBITMQ_VERSION": "4-management-alpine",
"RABBITMQ_VERSION": "4.2.5-management-alpine",
"RABBITMQ_AMQP_PORT": "5672",
"RABBITMQ_UI_PORT": "15672",
"RABBITMQ_USER": "guest",
Expand Down
2 changes: 1 addition & 1 deletion fragments/compose/rabbitmq.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
rabbitmq:
image: rabbitmq:${RABBITMQ_VERSION:-4-management-alpine}
image: rabbitmq:${RABBITMQ_VERSION:-4.2.5-management-alpine}
ports:
- ${RABBITMQ_AMQP_PORT:-5672}:5672
- ${RABBITMQ_UI_PORT:-15672}:15672
Expand Down
2 changes: 1 addition & 1 deletion fragments/compose/redis.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "redis",
"description": "Redis key-value store",
"variables": {
"REDIS_VERSION": "8",
"REDIS_VERSION": "8.4.2",
"REDIS_PORT": "6379"
},
"$schema": "https://voidrot.github.io/composable/latest/schemas/fragment.schema.json",
Expand Down
2 changes: 1 addition & 1 deletion fragments/compose/redis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
redis:
image: redis:${REDIS_VERSION:-8}
image: redis:${REDIS_VERSION:-8.4.2}
command: redis-server --save 60 1 --loglevel warning
ports:
- ${REDIS_PORT:-6379}:6379
Expand Down
2 changes: 1 addition & 1 deletion fragments/compose/traefik.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "traefik",
"description": "Traefik modern reverse proxy and load balancer",
"variables": {
"TRAEFIK_VERSION": "v3.3",
"TRAEFIK_VERSION": "v3.6.13",
"TRAEFIK_HTTP_PORT": "80",
"TRAEFIK_HTTPS_PORT": "443",
"TRAEFIK_DASHBOARD_PORT": "8080"
Expand Down
2 changes: 1 addition & 1 deletion fragments/compose/traefik.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
traefik:
image: traefik:${TRAEFIK_VERSION:-v3.3}
image: traefik:${TRAEFIK_VERSION:-v3.6.13}
ports:
- ${TRAEFIK_HTTP_PORT:-80}:80
- ${TRAEFIK_HTTPS_PORT:-443}:443
Expand Down
2 changes: 1 addition & 1 deletion fragments/compose/valkey.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "valkey",
"description": "Valkey - The Redis-compatible in-memory data structure store",
"variables": {
"VALKEY_VERSION": "9",
"VALKEY_VERSION": "9.0.3",
"VALKEY_PORT": "6379"
},
"$schema": "https://voidrot.github.io/composable/latest/schemas/fragment.schema.json",
Expand Down
2 changes: 1 addition & 1 deletion fragments/compose/valkey.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
valkey:
image: valkey/valkey:${VALKEY_VERSION:-9}
image: valkey/valkey:${VALKEY_VERSION:-9.0.3}
command: valkey-server --save 60 1 --loglevel warning
ports:
- ${VALKEY_PORT:-6379}:6379
Expand Down