docker run --tmpfs에서 오류가 발생했을 때의 해결 방법

1305 단어 도커centos7

소개



본 기사는 이하의 「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

좋은 웹페이지 즐겨찾기