2024-04-28 23:10:15 +02:00
|
|
|
services:
|
|
|
|
crdb:
|
|
|
|
restart: 'always'
|
|
|
|
image: 'cockroachdb/cockroach:v23.1.14'
|
|
|
|
command: 'start-single-node --advertise-addr 0.0.0.0 --insecure'
|
|
|
|
healthcheck:
|
|
|
|
test: ["CMD", "curl", "-f", "http://localhost:8080/health?ready=1"]
|
|
|
|
interval: '10s'
|
|
|
|
timeout: '30s'
|
|
|
|
retries: 5
|
|
|
|
start_period: '20s'
|
|
|
|
ports:
|
2024-05-11 23:23:00 +02:00
|
|
|
- 28080:8080
|
2024-04-28 23:10:15 +02:00
|
|
|
- '26257:26257'
|