강의

멘토링

커뮤니티

Inflearn Community Q&A

namlulu's profile image
namlulu

asked

Learning Docker and CI Environments by Following Along [Updated 2023.11]

About Docker Volume

docker volume이 안되는 이유 ㅠㅠ

Written on

·

453

0

awsdockergithubcicd데이터 엔지니어링travis-ci

Answer 3

1

John Ahn님의 프로필 이미지
John Ahn
Instructor

안녕하세요 !
우선 위에 에러 로그를 보면 index.js 가 없다고 나오는데 
컨테이너 실행후에 그 컨테이너 안에 index.js 파일이 있는지 부터 확인해보시겠어요 ~ ?

0

Namlulu님의 프로필 이미지
Namlulu
Questioner

아하 해결했습니다. 감사합니당

0

Namlulu님의 프로필 이미지
Namlulu
Questioner

FROM node:10

WORKDIR /usr/src/app

COPY ./ ./

RUN yarn install

CMD ["node", "index.js"]
#이렇게 이미지 생성했을 경우 잘 됨.
FROM node:10

WORKDIR /usr/src/app

copy .package.json ./

RUN yarn install

COPY ./ ./

CMD ["node", "index.js"]
#이렇게 바꾸고 나서도 잘 되었음
근데 볼륨 명령어 치면 안됨
namlulu's profile image
namlulu

asked

Ask a question