File tree 3 files changed +8
-3
lines changed
3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -12,8 +12,9 @@ payload_users_slug=users
12
12
mongo_password=
13
13
mongo_username=
14
14
mongo_db=
15
- mongo_connectionString=mongodb://localhost:27017 # mongodb://<app_name>-mongodb:27017 # app name is defined above.
15
+ mongo_connectionString=mongodb://localhost:<mongo_port> # mongodb://<app_name>-mongodb:27017 # app name is defined above.
16
16
email_host= # optional. You can configure the way you want the nodemailer and add the necessary config here.
17
17
email_user=
18
18
email_from=
19
- email_password=
19
+ email_password=
20
+ mongo_port=
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ services:
12
12
volumes :
13
13
- .mongodata:/data/db
14
14
env_file :
15
- - .env
15
+ - .env.local
16
16
networks :
17
17
- webnet
18
18
ports :
Original file line number Diff line number Diff line change 110
110
"cwd" : " apps/express"
111
111
}
112
112
},
113
+ "mongo" : {
114
+ "command" : " docker-compose -f apps/express/docker-compose.yml up" ,
115
+ "cwd" : " apps/express"
116
+ },
113
117
"docker-build" : {
114
118
"dependsOn" : [" build" ],
115
119
"command" : " docker build -f apps/express/Dockerfile . -t express"
You can’t perform that action at this time.
0 commit comments