DevOps28 [Docker] zsh: no matches found: JAR_FILE=build/libs/*.jar https://spring.io/guides/topicals/spring-boot-docker/ Spring Boot Docker this topical is designed to be read and comprehended in under an hour, it provides broad coverage of a topic that is possibly nuanced or requires deeper understanding than you would get from a getting started guide spring.io Spring Boot Docker 과정 중이다. 아래 명령어로 Docker Image 빌드 중 에러가 났다. docker build --build-arg JAR_FILE=build.. 2023. 1. 24. [Docker] zsh: command not found docker [MacOS] https://docs.docker.com/desktop/install/mac-install/ Install on Mac docs.docker.com 메뉴얼대로 MacOS에 Docker를 설치 후 터미널에 docker 명령어를 입력하는데zsh: command not found docker 에러가 났다. 해결방법: docker desktop을 실행한 후 docker 명령어를 입력하자.docker run -d -p 80:80 docker/getting-started 2023. 1. 22. [Docker] Dockerfile 작성 예시 Docker를 사용하기 위해서는 Dockerfile을 작성해야한다. Dockerfile은 다음과 같이 작성할 수 있다. docker docs에서 Dockerfile을 가져왔다. (docker docs > Guides > Language-specific guides > Java > Build Images) # syntax=docker/dockerfile:1 FROM eclipse-temurin:17-jdk-jammy WORKDIR /app COPY .mvn/ .mvn COPY mvnw pom.xml ./ RUN ./mvnw dependency:resolve COPY src ./src CMD ["./mvnw", "spring-boot:run"] Dockerfile 작성방법은 다음과 같다. FROM [buil.. 2023. 1. 20. [Ubuntu] 글자크기 변경(font-size change) CUI, Ubuntu Server Ubuntu Server인 CUI로 Ubuntu를 설치한 경우 터미널에서(물론 우분투를 실행하면 터미널만 열린다 ㅡ.ㅡ) 명령어를 통해 글자크기를 변경할 수 밖에 없다. 명령어는 다음과 같다. dpkg-reconfigure console-setup 다음과 같은 화면이 나오며 필자는 UTF-8을 선택했다. 다음은 엔터를 치면 된다. 선택하고 싶은 font를 선택하면 된다. 맨 아래 부분에서 글자크기 변경이 가능하다. 필자는 글자크기를 12*24로 선택했다. 글자크기가 커져서 좋은듯 하나 글자가 짤릴 수 있음. 주의 ~_~ 2023. 1. 19. [Ubuntu] 사용자에게 sudo 권한부여 사용자에게 sudo 권한을 부여하고 싶을 경우 터미널에서 root 계정으로 다음 명령어를 통해 파일을 연다. vi /etc/sudoers 파일에서 다음과 같은 라인을 찾는다. 하단에 있다. root 아래에 sudo 권한을 부여하고 싶은 사용자를 적는다. 필자는 won 사용자에게 sudo 권한을 부여했다. 2023. 1. 19. [Docker] error checking context 'can't stat https://docs.docker.com/get-started/02_our_app/ Containerize an application docs.docker.com Part2 :Containerize an application Build the app’s container image 도커 문서를 따라하던 중 에러가 생겼다. 다음 명령어에서 에러가 생겼다. docker build -t getting-started . 에러: error checking context 'can't stat home 디렉토리 하위에서 git clone을 했어야했다. Part 2: Containerize an application > Get the app 해결방안 다시 Get the app 절차로 돌아간다. 터미널에서 home 디.. 2023. 1. 18. [Ubuntu] E212: Can't open file for writting 에러 ubuntu 터미널에서 Dockerfile을 작성후 저장 후 종료하려고 했는데 에러가 발생했다. # syntax=docker/dockerfile:1 FROM node:18-alpine WORKDIR /app COPY . . RUN yarn install --production CMD ["node", "src/index.js"] EXPOSE 3000 "Dockerfile" E212: Can't open file for writing 해결방법은 둘중 하나를 쓰면 된다. 1. 이미 파일 만든 후 종료할 경우 :w !sudo tee % > /dev/null 2. 처음에 파일 만들때 sudo vi 사용 2023. 1. 18. [Ubuntu] root 초기 비밀번호 설정 terminal에서 아래 명령어를 입력하면 초기 비밀번호 설정이 가능하다. sudo passwd root 2023. 1. 18. 이전 1 2 3 4 다음