-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into angular14_plugins
- Loading branch information
Showing
53 changed files
with
20,326 additions
and
46,905 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
MAGE 6.2.x on Amazon Linux 2023 | ||
|
||
1. Install docker | ||
``` | ||
sudo yum install -y docker | ||
# get latest docker compose release from github - https://github.com/docker/compose/releases | ||
compose_version=v2.20.2 | ||
curl -LO https://github.com/docker/compose/releases/download/${compose_version}/docker-compose-linux-x86_64 | ||
sudo mkdir -p /usr/local/lib/docker/cli-plugins | ||
cd /usr/local/lib/docker/cli-plugins | ||
sudo mv docker-compose-linux-x86_64 /usr/local/lib/docker/cli-plugins/docker-compose-${compose_version}-linux-x86_64 | ||
cd /usr/local/lib/docker/cli-plugins | ||
sudo chmod +x ./docker-compose-${compose_version}-linux-x86_64 | ||
ln -s docker-compose-${compose_version}-linux-x86_64 docker-compose | ||
``` | ||
|
||
1. Install Node Version Manager (NVM) | ||
Install NVM from Github - https://github.com/nvm-sh/nvm#installing-and-updating. | ||
For example | ||
``` | ||
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.4/install.sh | bash | ||
``` | ||
|
||
1. Install MongoDB |
Oops, something went wrong.