Add Docker Volume from 1.9

This commit is contained in:
juliengarcia 2016-01-20 16:54:38 +01:00
parent 7ef9a05588
commit eb14fbf95f
1 changed files with 9 additions and 0 deletions

View File

@ -44,6 +44,15 @@ docker run --name=gogs-data --entrypoint /bin/true gogs/gogs
# Use `docker run` for the first time.
docker run --name=gogs --volumes-from gogs-data -p 10022:22 -p 10080:3000 gogs/gogs
```
#### Using Docker 1.9 Volume command
```
# Create docker volume.
$ docker volume create --name gogs-data
# Use `docker run` for the first time.
$ docker run --name=gogs -p 10022:22 -p 10080:3000 -v gogs-data:/data gogs/gogs
```
## Settings