diff --git a/README.md b/README.md index 3afd637..ac1a6a6 100644 --- a/README.md +++ b/README.md @@ -18,12 +18,17 @@ You can read more about RQL using the following resources: RQL building and deployment have been tested on: -* macOS Sonoma (with Docker Desktop), +* macOS Sonoma x86 and ARM (with Docker Desktop), * Ubuntu 20.04.6 LTS * Debian 12.5 +* Raspberry Pi 5 with Pi OS Lite (64-bit) In fact, any operating system that supports [Docker](https://www.docker.com/) should be able to build RQL. +The RQL front-end requires an x86 architecture. +Its Docker container can be run on an emulated environment. +On Linux ARM (e.g. Raspberry Pi), consider installing QEMU. + ## Build ```console diff --git a/docker-compose.yaml b/docker-compose.yaml index 3446bbd..b5cbcc5 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -34,6 +34,7 @@ services: frontend: container_name: rql_frontend build: rql-ui/ + platform: linux/amd64 image: rql:frontend-1.1.0-SNAPSHOT depends_on: - backend