1
0
mirror of https://github.com/sasjs/server.git synced 2025-12-15 21:14:35 +00:00

"feat: added docker containers""

This reverts commit 9e2123cfe9.
This commit is contained in:
Saad Jutt
2021-11-14 00:55:30 +05:00
parent 64656c2919
commit d5024012c4
10 changed files with 151 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
FROM mongo
COPY ./clients.json /clients.json
CMD mongoimport --host mongodb --db sasjs --collection clients --type json --file /clients.json --jsonArray

View File

@@ -0,0 +1,6 @@
[
{
"clientId": "clientID1",
"clientSecret": "clientSecret"
}
]