목록도커 (2)
miinsun
💻 실습 환경 OS : CentOS 8 Architecture : x89-64 📌 mysql image 다운 $ docker pull mysql:8 📌 mysql image 실행 $ docker run --name mysql8 -e MYSQL_ROOT_PASSWORD=관리자비밀번호 -p 3306:3306 -d mysql:8 📌 docker 상태 확인 $ docekr ps 📌 mySql 실행 $ docker exec -i -t mysql:8 mysql -u root -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 8 Server version: 8.0.27 MySQL C..
💻 실습 환경 OS : Linux (Ubuntu 8) Architecture : x89-64 📌 원인 : mySql 최신 이미지 실행시 발생 $ $ docker run --name mysql-container -e MYSQL_ROOT_PASSWORD=alstjs1docker -d -p 3306:3306 mysql:latest Unable to find image 'images:latest' locally docker: Error response from daemon: pull access denied for images, repository does not exist or may require 'docker login': denied: requested access to the resource is de..