docker-library/repo-info

Oracle Cloud Ampere instance

megvadulthangya opened this issue · 2 comments

Hi!

I get this error when i paste this(not exactly this, i changed passwd) config into portainer:

version: '3.1'

services:
joomla:
image: joomla
restart: always
links:
- joomladb:mysql
ports:
- 8080:80
environment:
JOOMLA_DB_HOST: joomladb
JOOMLA_DB_PASSWORD: example

joomladb:
image: mysql:5.6
restart: always
environment:
MYSQL_ROOT_PASSWORD: example

The Joomla image is maintained over at https://github.com/joomla/docker-joomla
https://hub.docker.com/_/joomla
This repo is "Extended information (especially license and layer details) about the published Official Images"

To your error "failed to deploy a stack: joomladb no matching manifest for linux/arm64/v8 in the manifest list entires" it's because your service joomladb is using the image mysql:5.6 which doesn't have arm64v8 variants because Oracle doesn't publish them. docker-library/mysql#680 (comment)
See also docker-library/mysql#905 (comment)
Also mysql:5.6 is EOL as of Feb 28 2021

Thank you for your time... Honestly i dont know how am i get here...