You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
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 text was updated successfully, but these errors were encountered: