Software Architecture/Docker (3) 썸네일형 리스트형 [ Docker ] Docker 명령어 모음 1. container 리스트 확인 - 실행중인 컨테이너 리스트만 확인 $docker container ls - 전체 컨테이너 리스트 확인 $docker container ls -a docker-compose로 기본 우분투 컨테이너 2개 구성하기 1. ubuntu 이미지 다운로드 cmd창에서 docker pull ubuntu 수행 2. 특정 폴더에 docker-compose.yml 파일 생성 version: "3" services: server1: image: ubuntu:latest ports: - "8083:8083" stdin_open: true tty: true server2: image: ubuntu:latest ports: - "8084:8084" stdin_open: true tty: true 3. cmd창 해당폴더에서 docker-compose up 실행 4. ubuntu에 접속하여 필요한 package설치 #apt install -y git 기초 학습 https://blog.thereis.xyz/52?category=773755 #2. Windows에서 Docker 사용하기(Gogs 설치하기) 지난 시간엔 Windows에서 Docker를 설치하고 Docker가 정상적으로 동작하는지 확인하는 시간을 가졌다. 간혹 "저 설치가 안되요! 이런저런 오류메시지가 나옵니다!" 하시는 분들은 본인의 PC가 노트북 blog.thereis.xyz Docker container 접속 https://282-ground.tistory.com/183 Docker 컨테이너 접속하는 방법/ 명령어 가끔 Docker 컨테이너 내부의 내용을 확인할 일이 있다. 방법은 쉬운데 명령어가 좀 길어서 자주 쓸 때는 기억하다가 한동안 안쓰면 까먹곤 한다. 그런 경우에 볼 용도로 블로그에 기.. 이전 1 다음