* feat: build a generic database upgrade mechanism * fix: PR review + add migration doc * fix: resorb clippy lints about cast (loss or truncation) and missing #Errors in docs
32 lines
637 B
YAML
32 lines
637 B
YAML
---
|
|
services:
|
|
postgres:
|
|
image: postgres
|
|
ports:
|
|
- 5432:5432
|
|
environment:
|
|
- POSTGRES_USER=kms
|
|
- POSTGRES_DB=kms
|
|
- POSTGRES_PASSWORD=kms
|
|
- PGDATA=/tmp/postgres2
|
|
mariadb:
|
|
image: mariadb
|
|
ports:
|
|
- 3306:3306
|
|
environment:
|
|
- MARIADB_DATABASE=kms
|
|
- MARIADB_USER=kms
|
|
- MARIADB_PASSWORD=kms
|
|
- MYSQL_DATABASE=kms
|
|
- MYSQL_ROOT_PASSWORD=kms
|
|
redis:
|
|
image: redis:latest
|
|
ports:
|
|
- 6379:6379
|
|
jaeger:
|
|
image: jaegertracing/all-in-one:latest
|
|
ports:
|
|
- 16686:16686
|
|
- 4317:4317
|
|
environment:
|
|
- COLLECTOR_OTLP_ENABLED=true
|