add link to volumes.md docs

This commit is contained in:
Valerii Makhniuk 2022-02-16 20:32:31 +03:00 committed by GitHub
parent 7d070ddcac
commit 6617ca3c95
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ First, well take a look at running a database in a container and how we use v
Instead of downloading MongoDB, installing, configuring and then running the Mongo database as a service, we can use the Docker Official Image for MongoDB and run it in a container.
Before we run MongoDB in a container, we want to create a couple of volumes that Docker can manage to store our persistent data and configuration. Let's use the managed volumes feature that docker provides instead of using bind mounts. You can read all about volumes in our documentation.
Before we run MongoDB in a container, we want to create a couple of volumes that Docker can manage to store our persistent data and configuration. Let's use the managed volumes feature that docker provides instead of using bind mounts. You can read all about volumes in [our documentation](../../storage/volumes.md).
Lets create our volumes now. Well create one for the data and one for configuration of MongoDB.