mirror of https://github.com/docker/docs.git
Update develop.md
In docker-compose.dev.yml, DATABASE_CONNECTIONSTRING is used as a database URL whereas, in the code, CONNECTIONSTRING is being used. Hence, updating the string in docker-compose.dev.yml file.
This commit is contained in:
parent
3e06ed6791
commit
3420e0bce0
|
@ -121,7 +121,7 @@ services:
|
|||
- 9229:9229
|
||||
environment:
|
||||
- SERVER_PORT=8080
|
||||
- DATABASE_CONNECTIONSTRING=mongodb://mongo:27017/notes
|
||||
- CONNECTIONSTRING=mongodb://mongo:27017/notes
|
||||
volumes:
|
||||
- ./:/code
|
||||
command: npm run debug
|
||||
|
|
Loading…
Reference in New Issue