diff options
author | Stewart Smith <stewart@flamingspork.com> | 2020-06-13 16:19:12 -0700 |
---|---|---|
committer | Daniel Axtens <dja@axtens.net> | 2020-06-15 17:12:00 +1000 |
commit | 8abd63eb75617ffff14205376ca6283c8f5e0ba2 (patch) | |
tree | 3d95d9783d05ecff5403998ece1c82796b906628 | |
parent | 7e5d2e64e2a51a7c4b789888e93788d5ad8875c8 (diff) | |
download | patchwork-8abd63eb75617ffff14205376ca6283c8f5e0ba2.tar patchwork-8abd63eb75617ffff14205376ca6283c8f5e0ba2.tar.gz |
docker: Switch to MariaDB for wider platform support
MySQL docker images only have amd64 arch support
MariaDB images have amd64, arm64v8, and ppc64le
Signed-off-by: Stewart Smith <stewart@flamingspork.com>
Signed-off-by: Daniel Axtens <dja@axtens.net>
-rw-r--r-- | docker-compose.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker-compose.yml b/docker-compose.yml index 1762d4a..1d49c51 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,7 +1,7 @@ version: "3" services: db: - image: mysql:5.7 + image: mariadb:10.4 volumes: - ./tools/docker/db/data:/var/lib/mysql environment: |