It provides the following volumes which can be used from the other Containers.
Our other standard containers like Apache/Nginx/etc will use these volumes to persist their data. You can add more volumes in Dockerfile if you wish to OR you can just use the subdirectories under /data for postgres/etc.
docker run -td --name [yourdataname] paimpozhil/data
##Now you have the volumes setup , run another container to utlize this
docker run -ti --name whatever --volumes-from [yourdataname] [imagename] /your/command
docker build -t stddata .
docker run -td --name [yourdataname] stddata
docker run -ti --name whatever --volumes-from [yourdataname] [imagename] /bin/bash
Content type
Image
Digest
sha256:e6de325f9…
Size
1.1 MB
Last updated
almost 11 years ago
docker pull paimpozhil/data