Skip to content

Commit a37a747

Browse files
committed
Updated installation.md with prerequisites
1 parent 9c62218 commit a37a747

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

docker-compose-dev.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: "3.8"
22
services:
33
mongo:
4-
image: mongo:latest
4+
image: mongo:4.4
55
container_name: mongo
66
restart: unless-stopped
77
ports:

docker-compose.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: "3.8"
22
services:
33
mongo:
4-
image: mongo:latest
4+
image: mongo:4.4
55
container_name: mongo
66
restart: unless-stopped
77
volumes:

docs/home/installation.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Installation
22

3+
## Prerequisites
4+
5+
- Mongo 4.4
6+
- Dotnet 6.0
7+
- Node 16.0
8+
39
## Docker Compose
410

511
You start ScriptBee using Docker. In order to do so, you need to setup a MongoDB server and set the connection string as
@@ -11,7 +17,7 @@ An example of the `docker-compose.yaml`:
1117
version: "3.8"
1218
services:
1319
mongo:
14-
image: mongo:latest
20+
image: mongo:4.4
1521
container_name: mongo
1622
restart: unless-stopped
1723
volumes:

0 commit comments

Comments
 (0)