일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 리눅스
- VPN
- ssh command
- RUBY
- 패키지
- port
- opsworks
- 드라이버
- 우분투
- docker-compose
- DevOps
- QT
- ubuntu
- window size
- ssh
- Linux
- golang
- Chef
- VIM
- docker
- driver
- 도커
- AWS
- docker registry
- Openswan
- sudo
- VMware
- docker container
- 방화벽체크
- 루비
- Today
- Total
구리의 창고
Docker - Container에서 Host로 접속 (Mac) 본문
머리글
Docker로 이것저것 작업을 하다보면 Container에서 호스트로 접속 할 일이 생긴다. 모든 Container를 --net=host로 띄우면 되지만 네트워크를 분리하고 싶을 경우 이건 해결책으로 사용 할 수가 없다. 두 가지 방법이 있다.
해결책1. network alias
$ ifconfig lo0 -alias 1.1.1.1/24
1.1.1.1 이 Docker Container 안에서 사용될 아이피다. 시스템 내에서 사용하지 않는 아이피를 설정해서 사용하면 된다.
해결책2. docker.for.mac.localhost
Docker CE 17.06부터 추가된 hostname이다. Docker Container안에서 docker.for.mac.localhost를 호스트로 사용하면 바로 접근이된다.
'DevOps' 카테고리의 다른 글
Docker - docker: Error response from daemon: No command specified (0) | 2017.11.30 |
---|---|
Docker - v1 registry 접속 실패 404 Not Found (disable-legacy-registry) (0) | 2017.09.25 |
Docker Image - repository 이름으로 삭제하기 (0) | 2017.08.04 |
Docker 로그 관리 - logrotate (0) | 2017.07.19 |
Docker Registry V2 설치 (0) | 2017.07.12 |
Comments