도커(docker) Dockerfile 을 이용한 centos8 + java17 + tomcat9 사용하기 도커파일을 아래 내용으로 만듭니다. $ vi Dockerfile FROM centos:8 MAINTAINER naya :wq .docker build 명령으를 통해 tag를 통해 REPOSITORY 이름을 설정하고 현재 폴더에 Dockerfile 이용해 빌드 실행 기존 모두 초기화후 다시실행하려면 옵션 --no-cache 추가 $ docker build --no-cache --tag centos8 ./ $ docker build --tag centos8 ./ Sending build context to Docker daemon 2.048kB Step 1/2 : FROM centos:8 8: Pull..