Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,20 @@ For example, you can add the following line to your shell’s rc file (e.g. ~/.b
```export PATH=<mongodb-install-directory>/bin:$PATH```
Replace <mongodb-install-directory> with the path to the extracted MongoDB archive.

## On Linux
For Ubuntu,SUSE, and Debian systems, you can install mongoDB Community Edition using .deb packages. The process varies from distro to distro, so I suggest you visit the link below, select your distribution.

Ubuntu terminal command:
`sudo apt-get update
sudo apt-get install -y mongodb-org`
Debian terminal command:
`sudo apt-get update
sudo apt-get install -y mongodb-org`
SUSE terminal command:
`sudo zypper -n install mongodb-org`

https://docs.mongodb.com/manual/administration/install-on-linux/

## Stackle API
1. `cd` in to the **stackle_api** directory.
2. Run `npm install` to install the packages required.
Expand Down
12 changes: 7 additions & 5 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@ services:
build: './stackle_api'
ports:
- "8080:8080"
links :
links:
- mongo
mongo:
image : mongo
image: mongo
restart: unless-stopped

angular:
build : './stackle_app'
ports :
- "9000:9000"
build: './stackle_app'
ports:
- "9000:9000"
Loading