목록IT/Docker (3)
And Brain said,
If you want to set up a Linux build environment on Windows, a Linux container can be a good solution. Here's the sample dockerfile for CentOS 7, also added git for you. If you've created the dockerfile, turn on Windows powerShell and go to the directory where the dockerfile is located. And then, create a network, build an image, and create & run a container from that image. // network bridge doc..
구글, 아마존, 마이크로소프트에서 도커를 지원하고 있다. 리눅스 컨테이너 기술 부분에서 도커가 사실상 업계 표준이 되어 가고 있다. Docker, 대체 무엇이 좋고 왜 쓰는지? 1. 이미지만 있다면 서버는 짧은 시간에 구성이 가능해진다. 2. 배포 단위를 이미지로 관리가 가능하다. 3. 프로세스와 데이터를 분리 4. 개발 및 테스트 환경 구성에 용이하다. 5. 가볍다 여러가지 장점이 있지만 이 다섯가지 이유가 가장 큰 이유다. Docker, container? 1. 운영체제 내에서 격리된 공간 2. Docker 이미지를 올려 실행시키는 공간 3. 시스템의 리소스를 할당/제어하는 단위 Thanks for watching, Have a nice day. https://www.docker.com/ Home -..
윈도우 로컬 환경에서 Docker를 사용하여 Node js 컨테이너를 만들어보겠다. https://www.docker.com/get-started/ Developers - Docker Developer productivity tools and a local Kubernetes environment. www.docker.com 일단 Docker desktop을 설치한다. 설치를 완료했으면 버전을 확인해본다. 이제 원하는 경로에 Dockerfile과 docker-compose.yml을 생성해야한다. 나는 Backend 폴더 안에 만들어보도록 하겠다. 그냥 파일 생성하고 저렇게 이름지으면 된다. Dockerfile은 확장자가 없다. 내용 작성은 이렇게 했다. Vsc에서 자동완성할 수 있는 Docker exte..