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 :: how to pull changes from master to forked repo 
Shell :: ubuntu install vagrant 
Shell :: install aws cli v2 mac 
Shell :: install unrar linux 
Shell :: how to install fish in debian 
Shell :: terminal save txt to clipboard 
Shell :: unzip rar 
Shell :: uptime linux 
Shell :: install torch 1.7.1 
Shell :: install pybind ubuntu 
Shell :: adb kill all emulators 
Shell :: generate crt and key openssl 
Shell :: linux show all group members 
Shell :: Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-idlotqqi/cryptography/ 
Shell :: import external python modules in blender 
Shell :: bash else if 
Shell :: execute powershell script from command line with parameters 
Shell :: ubuntu open all port 
Shell :: gcloud shell ssh 
Shell :: htpasswd add user 
Shell :: create .gitignore 
Shell :: bash regex match 
Shell :: octoprint log location 
Shell :: sed replace number 
Shell :: big sur ERROR: Error installing ffi: ERROR: Failed to build gem native extension. 
Shell :: applescript copy to clipboard 
Shell :: mac force quit 
Shell :: install faiss in colab 
Shell :: vim exit 
Shell :: print hello world in shell script 
ADD CONTENT
Topic
Content
Source link
Name
1+6 =