ops/docker27 docker registry 이미지 name 형식 - 형식 -> ex) /: 10.0.0.6:5000/azureuser/backend:0.0.1 2025. 11. 29. https://forums.docker.com/t/tutorial-solve-the-error-message-is-the-docker-daemon-running/145891 docker 명령어가 실행이 되지 않는다. docker 그룹에도 속해있고 docker 그룹에 ubuntu가 속해있다. https://forums.docker.com/t/tutorial-solve-the-error-message-is-the-docker-daemon-running/145891#p-245408-running-remote-docker-daemons-7 Tutorial: Solve the error message: "Is the Docker daemon running"Originally I published this tutorial on dev.to, and I copied the whole content here so you can read it regardless of the avail.. 2025. 11. 28. docker 설치 방법 -docker가 필요한 vm에 필요한 설정→ 각각 실행 혹은 실행 파일로 생성후 실행#!/bin/bash set -e1️⃣ 환경 변수DOCKER_GPG_ASC_URL="https://download.docker.com/linux/ubuntu/gpg"DOCKER_KEYRING="/usr/share/keyrings/docker-archive-keyring.gpg"DOCKER_LIST="/etc/apt/sources.list.d/docker.list"2️⃣ 필수 패키지 설치sudo apt update sudo apt install -y curl gnupg lsb-release3️⃣ GPG 키 다운로드 및 변환sudo curl -fsSL $DOCKER_GPG_ASC_URL -o docker.asc sudo gp.. 2025. 11. 27. docker 이미지를 관리하기 -docker 이미지를 파일로 저장 -> docker save ubuntu:22.04 -o ubuntu_22.04.tar -docker 이미지를 로컬에 업로드 -> docker load -i ubuntu_22.04.tar 2025. 11. 19. docker 허브가 아닌 다른 registry에 로그인하기 docker login 계정명과 비밀번호를 입력해주면 로그인이 된다. 2025. 11. 15. [docker] dockerhub에 이미지 push하기 현재 있는 이미지에 태그를 생성 생성된 태그를 확인 dockerhub로 이미지를 푸쉬한다. 리포지터리가 생성되었다. 이미지가 정상적으로 업로드 되었다. 2024. 11. 2. [docker] 터미널에서 docker login시 에러 발생 터미널에서 docker login시 에러가 발생하였다 해결방법 gpg 키를 생성 pass init 입력 도커 데스크탑의 설정 파일을 연다 credStore의 값을 pass로 수정한다 도커를 재시작한다 docker login 입력 도커 로그인이 성공적으로 되었다. gpg 키 생성하는법https://docs.docker.com/desktop/get-started/ Sign inExplore the Learning center and understand the benefits of signing in to Docker Desktopdocs.docker.com 2024. 11. 2. [docker] react 앱을 컨테이너 이미지로 생성하기 react 이미지를 생성하는도커 파일은 위와 같다. test_frontend 라는 이름으로이미지 빌드 db와 backend 컨테이너가 실행되고 있는 test network에서test_frontend 컨테이너를 실행 실행된 앱에서 브라우저로로그인시 에러 발생 요청을 보내는 주소가 localhost로 되어 있다. 도커가 생성한 test 네트워크에서 실행 중인 test-db는 172.18.0.1 네트워크에서 실행되고 있고ip 주소는 172.18.0.2이다. test_backend정보 검색 test_backend는172.18.0.1네트워크 대역에서 실행중이고ip 주소는 172.18.0.3이다. test_frontend는 172.18.0.1네트워크에서 실행 중이고ip 주소는.. 2024. 10. 27. [docker] springboot 어플리케이션 multi-stage 빌드하기 Docker file의 내용은 위와 같다. 이미지를 빌드시 에러 발생 파일은 못찾는다고 하니위와 같이 명령어를 실행하게 수정한다. 이미지를 다시 빌드하고 실행해보면은 위와 같이 파일이 있다.-> 파일이 2개 있어서 그런거 같다. 확실하게 하기 위해서WORKDIR를 사용해서디렉터리를 생성해주고 코드를생성한 디렉터리로 가지고 와서 작업을하도록 하였다. 이미지가 정상적으로 빌드가 되었다. ps. WORKDIR를 사용하지 않고 파일을 옮기려면아래와 같이/home/gradle/build/libs/ch8_4-0.0.1-SNAPSHOT.jar와 같이 작성해 주면은 된다. 위와 같이 정상적으로 빌드가 된다. 결론이전 스테이지에서 결과물을 가지고 올때는위치를 명확하게 작성해 주어야 한다. 후기도커는 .. 2024. 10. 27. 이전 1 2 3 다음