docker

Jenkins란 모든 언어의 조합과 소스 코드 레포지토리에 대한 CI/CD 환경을 구축하기 위한 도구 빌드: 서버에 올릴 수 있는 상태로 만드는 것 배포: 서버에 올려 사용자가 사용할 수 있게 하는 것 기능: 컴파일 오류 검출, 자동화 테스트 수행, 정적 코드 분석으로 인한 코딩 규약 준수 여부 체크, 성능 변화 감시 등.. EC2에 Jenkins 설치 EC2 생성 후 서버 접속(ssh, TCP 8080 뚫어주기) 아래의 스크립트 실행 출처: https://github.com/wardviaene/jenkins-course/blob/master/scripts/install_jenkins.sh #!/bin/bash # this script is only tested on ubuntu focal 20.04 (..
· Container
https://linuxcontainers.org/lxd/introduction/ Linux Containers - LXD - Introduction What's LXD? LXD is a next generation system container and virtual machine manager. It offers a unified user experience around full Linux systems running inside containers or virtual machines. It's image based with pre-made images available for a wide numbe linuxcontainers.org https://github.com/lxc/lxd GitHub - l..
· Container
"Docker는 LXC라는 컨테이너 기술을 기반으로 만들어진 상위레벨의 컨테이너 기술" https://linuxcontainers.org/ Linux Containers LXC LXC is a well-known Linux container runtime that consists of tools, templates, and library and language bindings. It's pretty low level, very flexible and covers just about every containment feature supported by the upstream kernel. LXC is production r linuxcontainers.org https://github.com/lxc/lxc..
· Container
https://docs.docker.com/engine/swarm/ Swarm mode overview docs.docker.com Docker Swarm docker container를 위한 클러스터링, 스케줄링 툴 여러 개의 서버와 컨테이너 관리를 쉽게 기능 docker engine 통합 관리(docker manager node에서 worker node를 통합 관리) load balancing(worker node 접속 시 round robin 방식으로 worker node의 task를 연결) task 개수 조절 기능(scale) multi-host-networking(overlay network를 통해 task 간 사용할 수 있는 네트워크 제공) 내장 DNS 서버 제공 종류 docker warm m..
· Container
https://docs.docker.com/machine/ Docker Machine overview docs.docker.com Docker Machine Dokcer Engine을 클라우드 컴퓨터, VM을 비롯한 원격지의 서버에 설치할 수 있도록 돕는 도구 일반적으로 로컬 시스템에 Docker Machine을 설치하고 원격지 서버에는 Docker Engine을 설치하고 로컬과 통신 " Virtual Machine에 Docker 설치하고 이와 쉽게 통신하게 하는 프로그램" 사용법 https://kin3303.tistory.com/26 20. Docker Machine Docker Machine Docker Machine 은 Docker Engine을 사용자 로컬 머신이 아닌 클라우드 컴퓨터, VM 을 ..
· Container
https://docs.docker.com/compose/ Overview of Docker Compose docs.docker.com Docker Compose 여러 개의 docker를 정의하고 실행하는 툴 YAML 파일로 여러 개의 docker 내부 속성을 설정하고 한 번에 실행시킴. docker를 배치로 한 번에 실행시키는 것 장점 Multiple isolated environments on a single host Preserve volume data when containers are created Only recreate containers that have changed Variables and moving a composition between environments 사용법 docker-c..
yj_oo_
'docker' 태그의 글 목록