Recent posts

[Docker] How to install docker

less than 1 minute read

최소 사양 Linux Kernel 3.10 Ubuntu 18.04, 20.04 (2021년 4월 30일 이후로 Ubuntu 16.04 LTS는 지원 종료) 64bit OS

[Git] Create git repository

less than 1 minute read

새로운 repository 생성 방법 echo "# New repository" >> README.md // 새로운 파일 생성 혹은 기존 작성된 파일 copy git init git add README.md git commit -m "first commit" g...

[Docker] How to build docker image

1 minute read

Docker build Docker image file 생성 docker build --tag [repository name]:[tag] . -t, –tag: 새로 생성할 image의 name을 지정 마지막의 점(.)은 Dockerfile 위치를 경로로 지정. 파일 이름...