mirror of https://github.com/docker/docs.git
Update get-started/nodejs/develop.md
Co-authored-by: Usha Mandya <47779042+usha-mandya@users.noreply.github.com>
This commit is contained in:
parent
db293a4325
commit
f555a16653
|
@ -20,7 +20,7 @@ First, we’ll 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. I like to 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.
|
||||
|
||||
Let’s create our volumes now. We’ll create one for the data and one for configuration of MongoDB.
|
||||
|
||||
|
|
Loading…
Reference in New Issue