1. 폴더구조 hive-docker/ ├── Dockerfile ├── docker-compose.yml ├── conf/ │ ├── core-site.xml │ └── hive-site.xml ├── jars/ │ ├── hadoop-aws-3.1.3.jar │ ├── aws-java-sdk-bundle-1.11.1024.jar │ └── postgresql-42.6.0.jar2. Dockerfile FROM apache/hive:3.1.3 USER root COPY jars/*.jar /opt/hive/auxlib/ RUN chmod +r /opt/hive/auxlib/*.jar USER hive ..