Fix docker.md with data volume container

This commit is contained in:
Harshavardhana 2015-11-28 11:18:47 -08:00
parent 910e270c1c
commit 1111e53a12

View file

@ -1,16 +1,32 @@
# docker run
## Running Minio in Docker.
To run docker image:
```docker run -p 9000:9000 minio/minio:latest```
### Installing Docker.
This will start minio server in the docker container, the data however is not persistent.
If you need persistent storage you can use the command:
```bash
sudo apt-get install Docker.io
```
```docker run -p 9000:9000 -v ${HOME}/.minio:/.minio -v ${HOME}/export:/export minio:latest```
### Generating `minio configs` for the first time.
Here the data uploaded to the minio server will be persisted to ${HOME}/export directory.
```bash
docker run -p 9000:9000 minio/minio:latest
```
# docker build
### Persist `minio configs`.
To build the docker image:
```make dockerimage TAG="<tag>"```
```bash
docker commit <running_minio_container_id> minio/my-minio
docker stop <running_minio_container_id>
```
### Create a data volume container.
```bash
docker create -v /export --name minio-export minio/my-minio /bin/true
```
You can then use the `--volumes-from` flag to mount the `/export` volume in another container.
```bash
docker run -p 9000:9000 --volumes-from minio-export --name minio1 minio/my-minio
```