195 lines
4.3 KiB
Markdown
195 lines
4.3 KiB
Markdown
# Minio
|
|
|
|
**🟢 Storage Service**
|
|
|
|
## 📋 Service Overview
|
|
|
|
| Property | Value |
|
|
|----------|-------|
|
|
| **Service Name** | minio |
|
|
| **Host** | Calypso |
|
|
| **Category** | Storage |
|
|
| **Difficulty** | 🟢 |
|
|
| **Docker Image** | `minio/minio:latest` |
|
|
| **Compose File** | `Calypso/reactive_resume_v4/docker-compose.yml` |
|
|
| **Directory** | `Calypso/reactive_resume_v4` |
|
|
|
|
## 🎯 Purpose
|
|
|
|
minio is a storage solution that manages data persistence, backup, or file sharing.
|
|
|
|
## 🚀 Quick Start
|
|
|
|
### Prerequisites
|
|
- Docker and Docker Compose installed
|
|
- Basic understanding of REDACTED_APP_PASSWORD
|
|
- Access to the host system (Calypso)
|
|
|
|
### Deployment
|
|
```bash
|
|
# Navigate to service directory
|
|
cd Calypso/reactive_resume_v4
|
|
|
|
# Start the service
|
|
docker-compose up -d
|
|
|
|
# Check service status
|
|
docker-compose ps
|
|
|
|
# View logs
|
|
docker-compose logs -f minio
|
|
```
|
|
|
|
## 🔧 Configuration
|
|
|
|
### Docker Compose Configuration
|
|
```yaml
|
|
command: server /data
|
|
container_name: Resume-MINIO
|
|
environment:
|
|
MINIO_ROOT_PASSWORD: "REDACTED_PASSWORD"
|
|
MINIO_ROOT_USER: minioadmin
|
|
healthcheck:
|
|
interval: 5s
|
|
retries: 5
|
|
test:
|
|
- CMD
|
|
- mc
|
|
- ready
|
|
- local
|
|
timeout: 5s
|
|
hostname: resume-minio
|
|
image: minio/minio:latest
|
|
ports:
|
|
- 9753:9000
|
|
restart: on-failure:5
|
|
security_opt:
|
|
- no-new-privileges:true
|
|
user: 1026:100
|
|
volumes:
|
|
- /volume1/docker/rxv4/data:/data:rw
|
|
|
|
```
|
|
|
|
### Environment Variables
|
|
| Variable | Value | Description |
|
|
|----------|-------|-------------|
|
|
| `MINIO_ROOT_USER` | `minioadmin` | Configuration variable |
|
|
| `MINIO_ROOT_PASSWORD` | `***MASKED***` | Configuration variable |
|
|
|
|
|
|
### Port Mappings
|
|
| Host Port | Container Port | Protocol | Purpose |
|
|
|-----------|----------------|----------|----------|
|
|
| 9753 | 9000 | TCP | Management interface |
|
|
|
|
|
|
### Volume Mappings
|
|
| Host Path | Container Path | Type | Purpose |
|
|
|-----------|----------------|------|----------|
|
|
| `/volume1/docker/rxv4/data` | `/data` | bind | Application data |
|
|
|
|
|
|
## 🌐 Access Information
|
|
|
|
### Web Interface
|
|
- **HTTP**: `http://Calypso:9753`
|
|
|
|
### Default Credentials
|
|
Refer to service documentation for default credentials
|
|
|
|
## 🔒 Security Considerations
|
|
|
|
- ✅ Security options configured
|
|
- ✅ Non-root user configured
|
|
|
|
## 📊 Resource Requirements
|
|
|
|
No resource limits configured
|
|
|
|
### Recommended Resources
|
|
- **Minimum RAM**: 512MB
|
|
- **Recommended RAM**: 1GB+
|
|
- **CPU**: 1 core minimum
|
|
- **Storage**: Varies by usage
|
|
|
|
### Resource Monitoring
|
|
Monitor resource usage with:
|
|
```bash
|
|
docker stats
|
|
```
|
|
|
|
## 🔍 Health Monitoring
|
|
|
|
✅ Health check configured
|
|
**Test Command**: `CMD mc ready local`
|
|
**Check Interval**: 5s
|
|
**Timeout**: 5s
|
|
**Retries**: 5
|
|
|
|
### Manual Health Checks
|
|
```bash
|
|
# Check container health
|
|
docker inspect --format='{{.State.Health.Status}}' CONTAINER_NAME
|
|
|
|
# View health check logs
|
|
docker inspect --format='{{range .State.Health.Log}}{{.Output}}{{end}}' CONTAINER_NAME
|
|
```
|
|
|
|
## 🚨 Troubleshooting
|
|
|
|
### Common Issues
|
|
**Service won't start**
|
|
- Check Docker logs: `docker-compose logs service-name`
|
|
- Verify port availability: `netstat -tulpn | grep PORT`
|
|
- Check file permissions on mounted volumes
|
|
|
|
**Can't access web interface**
|
|
- Verify service is running: `docker-compose ps`
|
|
- Check firewall settings
|
|
- Confirm correct port mapping
|
|
|
|
**Performance issues**
|
|
- Monitor resource usage: `docker stats`
|
|
- Check available disk space: `df -h`
|
|
- Review service logs for errors
|
|
|
|
### Useful Commands
|
|
```bash
|
|
# Check service status
|
|
docker-compose ps
|
|
|
|
# View real-time logs
|
|
docker-compose logs -f minio
|
|
|
|
# Restart service
|
|
docker-compose restart minio
|
|
|
|
# Update service
|
|
docker-compose pull minio
|
|
docker-compose up -d minio
|
|
|
|
# Access service shell
|
|
docker-compose exec minio /bin/bash
|
|
# or
|
|
docker-compose exec minio /bin/sh
|
|
```
|
|
|
|
## 📚 Additional Resources
|
|
|
|
- **Official Documentation**: Check the official docs for minio
|
|
- **Docker Hub**: [minio/minio:latest](https://hub.docker.com/r/minio/minio:latest)
|
|
- **Community Forums**: Search for community discussions and solutions
|
|
- **GitHub Issues**: Check the project's GitHub for known issues
|
|
|
|
## 🔗 Related Services
|
|
|
|
Other services in the storage category on Calypso
|
|
|
|
---
|
|
|
|
*This documentation is auto-generated from the Docker Compose configuration. For the most up-to-date information, refer to the official documentation and the actual compose file.*
|
|
|
|
**Last Updated**: 2025-11-17
|
|
**Configuration Source**: `Calypso/reactive_resume_v4/docker-compose.yml`
|