Answers for "ERROR: no matching manifest for linux/arm64/v8 in the manifest list entries"

SQL
1

no matching manifest for linux/arm64/v8 in the manifest list entries

version: '3.6'
services: 
  mysql:
    image: mysql
    platform: linux/amd64  # ADD THIS LINE 
    restart: always
    ports:
Posted by: Guest on March-04-2022
0

no matching manifest for linux/arm64/v8 in the manifest list entries Mac

services:
  db:
    platform: linux/x86_64
    image: mysql:5.7
    ...
Posted by: Guest on March-24-2022
0

no matching manifest for linux/arm64/v8 in the manifest list entries

version: '3.6'
services: 
  mysql:
    image: mysql
    platform: linux/amd64 # ADD This line to your docker-compose
    restart: always
    ports:
Posted by: Guest on March-04-2022
0

ERROR: no matching manifest for linux/arm64/v8 in the manifest list entries

//Add platform like this:
services:
  db:
    platform: linux/x86_64
    image: mysql:5.7
Posted by: Guest on April-25-2022

Code answers related to "SQL"

Browse Popular Code Answers by Language