tech

21/04/01 Windows 10 Docker 환경 구성 - Centos 7에서 systemctl 사용하기

tech-lover 2021. 4. 1. 16:15
  • 환경
    • Docker-Desktop for Windows (WSL2) 사용
실행화면
$ docker run -it -d --privileged centos:7 /sbin/init 
-it terminal
-d background
--privileged : systemctl 명령 실행 가능하도록 권한 설정
$ docker exec -it <container id> bash