From 1bdeabc3a3d0295419f2e5ab7bc621041b100bcf Mon Sep 17 00:00:00 2001 From: Alex Ling Date: Mon, 17 Aug 2020 13:03:22 +0800 Subject: [PATCH] Created Platform Support (markdown) --- Platform-Support.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Platform-Support.md diff --git a/Platform-Support.md b/Platform-Support.md new file mode 100644 index 0000000..968493b --- /dev/null +++ b/Platform-Support.md @@ -0,0 +1,16 @@ +### amd64/x86-64 + +Mango supports all OS on amd64. You can install Mango using either [`docker-compose`](https://github.com/hkalexling/Mango#docker) or the official docker images on [Dockerhub](https://hub.docker.com/r/hkalexling/mango). If you are using Linux, it is recommended to use the pre-built binary file from the latest [release](https://github.com/hkalexling/Mango/releases/). The binary file contains all the dependencies and static files, so it's the easiest way to get Mango up and running. + +### arm32v7/arm64v8 + +Please follow the instructions below to install Mango on ARM devices. + +1. Make sure you have Docker and `docker-compose` installed +2. Clone the repository and `cd` into it +3. Download the object file for your architecture (`mango-*.o`) from the latest [release](https://github.com/hkalexling/Mango/releases/) and place it in the cloned repository +4. Edit the `docker-compose.yml` file and change the `dockerfile` field to either `./Dockerfile.arm32v7` or `./Dockerfile.arm64v8` +5. Follow the regular [Docker installation guide](https://github.com/hkalexling/Mango#docker) to build and run the container + + +