docker run --tmpfs에서 오류가 발생했을 때의 해결 방법
소개
본 기사는 이하의 「Docker 실천 가이드 제2판」을 진행하고 있어 막힌 포인트의 해결 메모입니다.
3-9-1 컨테이너에서 Apache 웹 서비스 시작
/sbin/init로 Docker 컨테이너 시작
여기에 표시된 명령
$ docker container run \
-it \
--tmpfs /tmp \
--tmpfs /run \
-v /sys/fs/cgroup:/sys/fs/cgroup:ro \
--stop-signal SIGRTMIN+3 \
--name test01 \
-h test01 \
centos:test01 /sbin/init
실행했을 때,
docker: invalid reference format.
See 'docker run --help'.
그리고 반환되었습니다.
docker run --help
를 실행했는데, 제대로 모든 옵션은 발견되어 사용법도 문제 없을 것 같다.여러가지 조사한 결과
--tmpfs /tmp
-tmpfs 옵션--mount type=tmpfs,destination=/tmp
같은 --mount 옵션으로 대체하여 해결수정 후
$ docker run \
-it \
--mount type=tmpfs,destination=/tmp \
--mount type=tmpfs,destination=/run \
-v /sys/fs/cgroup:/sys/fs/cgroup:ro \
--stop-signal SIGRTMIN+3 \
--name test01 \
-h test01 \
centos:test01 /sbin/init
참고
Docker Documentation
Reference
이 문제에 관하여(docker run --tmpfs에서 오류가 발생했을 때의 해결 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/Nogticron/items/3394236a1cf6a8f0272c텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)