Docker
Volumes
Persistent storage workflows for Docker in SkyPort.
Volumes are the persistence layer for containerized workloads. SkyPort's backend Docker module can list, create, delete, and prune volumes.
Workflow
- Create a named volume for persistent data.
- Mount it into the container.
- Prune unused volumes only after you confirm nothing depends on them.
CLI And Docker Commands
terminal
docker volume create skyport-data
skyport docker ps
Notes For Docs
- Use volume examples that match persistent app data.
- Explain the risk of deleting a volume.
- Avoid pretending SkyPort is a registry or storage platform.
Next
- Read Containers.
- Read Images.
- Read Networks.
