A note on how to easily create an environment if you want to study Linux in a Mac environment.
--macOS Catalina version 10.15.7
#Pull Docker image
docker pull centos:8
docker images | grep centos
#Start container
docker run -it -d --name centos8 centos:8
docker ps | grep centos
##Enter the container
docker exec -it centos8 /bin/bash
Recommended Posts