Volumes & Storage
Docker Swarm volumes are local to each node — they do not replicate across servers. Losing a node means losing its volumes unless backed up.
Azure Volumes (218 GB free)
Section titled “Azure Volumes (218 GB free)”| Volume | Service | Critical? |
|---|---|---|
dev_postgresql_data | DEV PostgreSQL (Primary) | Yes — all DEV application data |
dev_postgresql_replica_data | DEV PostgreSQL (Replica) | Medium — read-only copy of primary |
dev_redis_data | DEV Redis | No — cache, regenerates |
dev_rabbitmq_data | DEV RabbitMQ | Medium — queued messages |
dev_kafka_data | DEV Kafka | Medium — event logs |
dev_immudb_data | DEV ImmuDB | Yes — immutable audit trail |
dev_garage_data/meta | DEV Garage S3 | Yes — uploaded files |
dev_superset_home | DEV Superset | Low — dashboards config |
audit-debezium-data | Kafka Connect | Low — connector state |
Contabo Volumes (256 GB free)
Section titled “Contabo Volumes (256 GB free)”| Volume | Service | Critical? |
|---|---|---|
uat_uat_postgresql_data | UAT PostgreSQL (Primary) | Yes — all UAT application data |
uat_uat_postgresql_replica_data | UAT PostgreSQL (Replica) | Medium — read-only copy of primary |
uat_uat_redis_data | UAT Redis | No — cache |
uat_uat_rabbitmq_data | UAT RabbitMQ | Medium |
uat_uat_kafka_data | UAT Kafka | Medium |
uat_uat_immudb_data | UAT ImmuDB | Yes — audit trail |
uat_uat_garage_data/meta | UAT Garage S3 | Yes — uploaded files |
Contabo Bind Mounts (Harbor)
Section titled “Contabo Bind Mounts (Harbor)”Harbor uses bind mounts to /data/ instead of Docker volumes.
| Path | Service | Size | Critical? |
|---|---|---|---|
/data/registry | Harbor Registry | 35 GB | Yes — all container images |
/data/database | Harbor DB | 4 KB | Yes — Harbor metadata |
/data/redis | Harbor Redis | 2 MB | No — cache |
/data/job_logs | Harbor Job Service | 28 KB | No — logs |
/data/secret | Harbor secrets | 28 KB | Yes — Harbor encryption keys |
nexus-data | Nexus | 34 MB | Low — cached artifacts |
shared_portainer_data | Portainer | Small | Low — UI config |
Checking Volume Usage
Section titled “Checking Volume Usage”# List all volumesdocker volume ls
# Inspect a volume (shows mount point)docker volume inspect dev_postgresql_data
# Check disk usage on the serverdf -h