1. docker 가이드
https://subicura.com/2017/01/19/docker-guide-for-beginners-1.html
https://www.slideshare.net/pyrasis/docker-fordummies-44424016
1.1. docker for mini OS
https://blog.ubuntu.com/2018/07/09/minimal-ubuntu-released
Minimal Ubuntu, on public clouds and Docker Hub | Ubuntu
Today we are delighted to introduce the new Minimal Ubuntu, optimized for automated use at scale, with a tiny package set and minimal security cross-section. Speed, performance and stability are primary concerns for cloud developers and ops. “The small foo
ubuntu.com
1.2. docker redis
https://jistol.github.io/docker/2017/09/01/docker-redis/
Docker Redis 사용하기
jistol.github.io
1.3. docker - let's set redis on docker
http://yongho1037.tistory.com/699
Docker 활용기(4) - redis 구성해보기
Custom config 파일 적용하기 redis 이미지를 구동하면 설정이 기본값으로 적용되기 때문에 직접 설정한 redis.conf 파일을 적용하려면 docker run 명령 수행시에 -v 옵션을 통해 container 내의 /usr/local/etc/r..
yongho1037.tistory.com
1.4. docker blog
http://yongho1037.tistory.com/category/Programming/Docker?page=2
'Programming/Docker' 카테고리의 글 목록 (2 Page)
yongho1037.tistory.com
1.5. docker elasticsearch
http://brownbears.tistory.com/66
Elasticsearch 설치 및 사용법
Elastic Search 설치 $ docker pull elasticsearch # 이미지 다운로드 $ docker run -d -p 9200:9200 --name elastic elasticsearch # 기본세팅으로 바로 실행 $ docker run -d -p 9200:9200 --name elastic elast..
brownbears.tistory.com
1.6. docker save the change thing
https://code.i-harness.com/ko/q/1b402e1
1.7. set the password in redis
http://dejavuqa.tistory.com/154
redis 암호 설정과 외부 접속 허용 설정
redis-server를 기본으로 설정했다면 로컬 접속만 허용되게 됩니다. 외부 서버에서는 접속이 되지 않습니다. 외부에서 접속하기 위한 설정과 암호를 설정해 봅시다. 먼저 암호설정입니다. redis.conf를 엽니다. $..
dejavuqa.tistory.com
2. docker 명령어 모음
docker + command
docker search < image name >
docker pull < image name > : < tag >
docker images
docker run < option > < image name > < file >
docker ps
docker start < container name > / restart
docker attach < container name >
docker exec < container name >
docker stop < container name >
docker rm < container name >
docker rmi < image name > : < tag >
docker build < option > < Dockerfile path >
2.1. 한 라인으로 모든 컨테이너 삭제
only one line command for delete all container
docker stop $(docker ps -a -q)
docker rm $(docker ps -a -q)
'Open source > Docker' 카테고리의 다른 글
[Open source] Docker - 03. 시스템 가용성 체크 / 제한 (0) | 2020.03.02 |
---|---|
[Open source] Docker - 02. Virtualize Selenium (0) | 2020.03.02 |