Enhance README.md with detailed service descriptions and port matrix for Docker services in the home lab environment.

This commit is contained in:
GSRN
2025-08-30 22:50:16 +02:00
parent a61cbc64cb
commit 3d4c01fc1b
12 changed files with 609 additions and 0 deletions

17
mongo/compose.yaml Normal file
View File

@@ -0,0 +1,17 @@
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: