Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

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: 
Comment

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

services:
  db:
    platform: linux/x86_64
    image: mysql:5.7
    ...
Comment

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: 
Comment

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: 
Comment

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

sudo docker pull --platform linux/amd64 mysql
Comment

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
Comment

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

# ERROR: no matching manifest for linux/arm64/v8 in the manifest list entries
services:
  ca_orderer:
      image: hyperledger/fabric-ca:latest
      platform: linux/x86_64  # Specify the plateform and error solve
Comment

PREVIOUS NEXT
Code Example
Shell :: authentication failed for git 
Shell :: rebase my fork branch 
Shell :: git stash to checkout master 
Shell :: git unstash 
Shell :: bash script template linux 
Shell :: list directories linux 
Shell :: instal ansible centos 7 
Shell :: commit your changes 
Shell :: setup ssh key 
Shell :: git clone into path 
Shell :: systemctl enable service 
Shell :: gnu octave ubuntu 20.04 
Shell :: how to revert commit in git 
Shell :: visual studio 2022 cannot install nuget package 
Shell :: chmod 777 meaning 
Shell :: dokcer remove image 
Shell :: dir command 
Shell :: How to delete files in linxu terminal 
Shell :: bash script create file 
Shell :: create biitable usb installer for macos 
Shell :: pylint 
Shell :: ssh config file 
Shell :: install windows 10 on virtualbox mac 
Shell :: Dockerfile RUN cmd before prompt 
Shell :: ssh to lightsail 
Shell :: bash mkdir multiple 
Shell :: how to start payara server 
Shell :: git commit -am "make it better" error 
Shell :: grep string in file 
Shell :: calenderfx installation 
ADD CONTENT
Topic
Content
Source link
Name
5+9 =