automated terminal push
All checks were successful
learn org at code.softwareshinobi.com/docker.softwareshinobi.com/pipeline/head This commit looks good

This commit is contained in:
2025-06-05 19:01:04 -04:00
parent f1997cab0f
commit 899ea17084
208 changed files with 3644 additions and 11988 deletions

169
docs/007-docker-volumes.md Normal file
View File

@@ -0,0 +1,169 @@
# Docker Volumes
Docker volumes are the preferred mechanism for persisting data generated by and used by Docker containers. While containers can create, update, and delete files, those changes are lost when the container is removed and all changes are isolated to that container. Volumes provide the ability to connect specific filesystem paths of the container back to the host machine. If a directory in the container is mounted, changes in that directory are also seen on the host machine. If we mount that same directory across container restarts, we'd see the same files.
## Why Use Docker Volumes?
1. **Data Persistence**: Volumes allow you to persist data even when containers are stopped or removed.
2. **Data Sharing**: Volumes can be shared and reused among multiple containers.
3. **Performance**: Volumes are stored on the host filesystem, which generally provides better I/O performance, especially for databases.
4. **Data Management**: Volumes make it easier to backup, restore, and migrate data.
5. **Decoupling**: Volumes decouple the configuration of the Docker host from the container runtime.
## Types of Docker Volumes
### 1. Named Volumes
Named volumes are the recommended way to persist data in Docker. They are explicitly created and given a name.
Creating a named volume:
```bash
docker volume create my_volume
```
Using a named volume:
```bash
docker run -d --name devtest -v my_volume:/app nginx:latest
```
### 2. Anonymous Volumes
Anonymous volumes are automatically created by Docker and given a random name. They're useful for temporary data that you don't need to persist beyond the life of the container.
Using an anonymous volume:
```bash
docker run -d --name devtest -v /app nginx:latest
```
### 3. Bind Mounts
Bind mounts map a specific path of the host machine to a path in the container. They're useful for development environments.
Using a bind mount:
```bash
docker run -d --name devtest -v /path/on/host:/app nginx:latest
```
## Working with Docker Volumes
### Listing Volumes
To list all volumes:
```bash
docker volume ls
```
### Inspecting Volumes
To get detailed information about a volume:
```bash
docker volume inspect my_volume
```
### Removing Volumes
To remove a specific volume:
```bash
docker volume rm my_volume
```
To remove all unused volumes:
```bash
docker volume prune
```
### Backing Up Volumes
To backup a volume:
```bash
docker run --rm -v my_volume:/source -v /path/on/host:/backup ubuntu tar cvf /backup/backup.tar /source
```
### Restoring Volumes
To restore a volume from a backup:
```bash
docker run --rm -v my_volume:/target -v /path/on/host:/backup ubuntu tar xvf /backup/backup.tar -C /target --strip 1
```
## Volume Drivers
Docker supports volume drivers, which allow you to store volumes on remote hosts or cloud providers, among other options.
Some popular volume drivers include:
- Local (default)
- NFS
- AWS EBS
- Azure File Storage
To use a specific volume driver:
```bash
docker volume create --driver <driver_name> my_volume
```
## Best Practices for Using Docker Volumes
1. **Use named volumes**: They're easier to manage and track than anonymous volumes.
2. **Don't use bind mounts in production**: They're less portable and can pose security risks.
3. **Use volumes for databases**: Databases require persistent storage and benefit from the performance of volumes.
4. **Be cautious with permissions**: Ensure the processes in your containers have the necessary permissions to read/write to volumes.
5. **Clean up unused volumes**: Regularly use `docker volume prune` to remove unused volumes and free up space.
6. **Use volume labels**: Labels can help you organize and manage your volumes.
```bash
docker volume create --label project=myapp my_volume
```
7. **Consider using Docker Compose**: Docker Compose makes it easier to manage volumes across multiple containers.
## Advanced Volume Concepts
### 1. Read-Only Volumes
You can mount volumes as read-only to prevent containers from modifying the data:
```bash
docker run -d --name devtest -v my_volume:/app:ro nginx:latest
```
### 2. Tmpfs Mounts
Tmpfs mounts are stored in the host system's memory only, which can be useful for storing sensitive information:
```bash
docker run -d --name tmptest --tmpfs /app nginx:latest
```
### 3. Sharing Volumes Between Containers
You can share a volume between multiple containers:
```bash
docker run -d --name container1 -v my_volume:/app nginx:latest
docker run -d --name container2 -v my_volume:/app nginx:latest
```
### 4. Volume Plugins
Docker supports third-party volume plugins that can provide additional functionality:
```bash
docker plugin install <plugin_name>
docker volume create -d <plugin_name> my_volume
```
## Troubleshooting Volume Issues
1. **Volume not persisting data**: Ensure you're using the correct volume name and mount path.
2. **Permission issues**: Check the permissions of the mounted directory both on the host and in the container.
3. **Volume not removing**: Make sure no containers are using the volume before trying to remove it.
4. **Performance issues**: If you're experiencing slow I/O, consider using a volume driver optimized for your use case.
## Conclusion
Docker volumes are a crucial component for managing data in Docker environments. They provide a flexible and efficient way to persist and share data between containers and the host system. By understanding how to create, manage, and use volumes effectively, you can build more robust and maintainable containerized applications.
Remember that the choice between different types of volumes (named volumes, bind mounts, or tmpfs mounts) depends on your specific use case. Always consider factors like persistence needs, performance requirements, and security implications when working with Docker volumes.