18 lines
347 B
YAML
18 lines
347 B
YAML
version: '3.8'
|
|
services:
|
|
mongodb:
|
|
image: mongo:6-jammy
|
|
ports:
|
|
- '27017:27017'
|
|
volumes:
|
|
- dbdata6:/data/db
|
|
restart: "unless-stopped"
|
|
healthcheck:
|
|
test: ["CMD", "mongosh", "--eval", "db.adminCommand('ping')"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 40s
|
|
volumes:
|
|
dbdata6:
|