docker-compose up -d 로 docker-compose.yml 파일 내용을 실행 시 아래와 같이 오류가 발생을 확인하면
$ docker-compose up -d
[+] Running 1/2
✔ Network mstream_default Created 0.1s
⠹ Container mstream Starting 0.2s
Error response from daemon: failed to create task for container: Unimplemented: failed to start shim: start failed: unsupported shim version (3): not implemented
아래 명령어 입력 후
$ systemctl restart containerd
다시 도커 실행하면 해결완료
$ docker-compose up -d
[+] Running 1/1
✔ Container mstream Started