logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Docker Volume - Manage Data Volumes | Online Free DevTools by Hexmos

Manage Docker data volumes with Docker Volume. Create, list, remove, and inspect volumes efficiently. Free online tool, no registration required.

docker-volume

Manage Docker volumes. More information: https://docs.docker.com/reference/cli/docker/volume/.

  • Create a volume:

docker volume create {{volume_name}}

  • Create a volume with a specific label:

docker volume create --label {{label}} {{volume_name}}

  • Create a tmpfs volume a size of 100 MiB and an uid of 1000:

docker volume create {{[-o|--opt]}} {{type}}={{tmpfs}} {{[-o|--opt]}} {{device}}={{tmpfs}} {{[-o|--opt]}} {{o}}={{size=100m,uid=1000}} {{volume_name}}

  • List all volumes:

docker volume ls

  • Remove a volume:

docker volume rm {{volume_name}}

  • Display information about a volume:

docker volume inspect {{volume_name}}

  • Remove all unused local volumes:

docker volume prune

  • Display help for a subcommand:

docker volume {{subcommand}} --help

See Also