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 :: install-nodejs-and-npm 
Shell :: git remote commands 
Shell :: git global config location 
Shell :: how to install dpkg in ubuntu 
Shell :: install wordpress on ubuntu 20.04 
Shell :: how to update git 
Shell :: bash see size of directory 
Shell :: bash go to folder 
Shell :: nslookup all dns entries 
Shell :: can I change a forked repo name 
Shell :: git delete all remote branches except master 
Shell :: remove all files with no extention rm 
Shell :: install packages from jupyter notebook 
Shell :: bash get file full path 
Shell :: git how to remove git 
Shell :: loop over file bash 
Shell :: install composer in ubantu 20 
Shell :: check gateway linux 
Shell :: git view stash 
Shell :: sudo doesnt work on windows 
Shell :: how to upload code to github 
Shell :: night light for ubuntu 
Shell :: How To Install the Apache Web Server on Ubuntu 18.04 
Shell :: remove git repository 
Shell :: Show up usb drive in ubuntu if it mounts 
Shell :: install docker in kali linux 
Shell :: run pm2 in cluster mode 
Shell :: install react-native-community hooks 
Shell :: aws extend volume ubuntu 
Shell :: increment in bash 
ADD CONTENT
Topic
Content
Source link
Name
5+3 =