From a36bf4fd8be3991e4f687f5c43e97b1ce70aece7 Mon Sep 17 00:00:00 2001 From: Guillaume Lours Date: Fri, 5 Nov 2021 22:05:17 +0100 Subject: [PATCH] add support of arm64 architecture for react-java-mysql Signed-off-by: Guillaume Lours --- react-java-mysql/README.md | 10 +++++++++- react-java-mysql/docker-compose.yaml | 9 ++++++--- 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/react-java-mysql/README.md b/react-java-mysql/README.md index b4de88e..bd5994e 100644 --- a/react-java-mysql/README.md +++ b/react-java-mysql/README.md @@ -23,7 +23,10 @@ services: build: backend ... db: - image: mysql:8.0.19 + # We use a mariadb image which support both amd64 & arm64 architecture + image: mariadb:10.6.4-focal + # If you really want to use MySQL, uncomment the following line + #image: mysql:8.0.27 ... frontend: build: frontend @@ -35,6 +38,11 @@ The compose file defines an application with three services `frontend`, `backend When deploying the application, docker-compose maps port 3000 of the frontend service container to port 3000 of the host as specified in the file. Make sure port 3000 on the host is not already being in use. +> ℹ️ **_INFO_** +> For compatibility purpose between `AMD64` and `ARM64` architecture, we use a MariaDB as database instead of MySQL. +> You still can use the MySQL image by uncommenting the following line in the Compose file +> `#image: mysql:8.0.27` + ## Deploy with docker-compose ``` diff --git a/react-java-mysql/docker-compose.yaml b/react-java-mysql/docker-compose.yaml index 539fa3a..ebf8a75 100644 --- a/react-java-mysql/docker-compose.yaml +++ b/react-java-mysql/docker-compose.yaml @@ -13,10 +13,13 @@ services: db: condition: service_healthy db: + # We use a mariadb image which support both amd64 & arm64 architecture + image: mariadb:10.6.4-focal + # If you really want to use MySQL, uncomment the following line + #image: mysql:8.0.19 environment: - MYSQL_DATABASE: example - MYSQL_ROOT_PASSWORD_FILE: /run/secrets/db-password - image: mysql:8.0.19 + - MYSQL_DATABASE=example + - MYSQL_ROOT_PASSWORD_FILE=/run/secrets/db-password restart: always healthcheck: test: ["CMD", "mysqladmin", "ping", "-h", "127.0.0.1", "--silent"]