Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- NapuCon2016
- useEffect
- react
- 바스트로37
- 고릴라볼링장
- 강다니엘
- SetMail
- Hook
- docker
- SpringCamp2019
- MariaDB
- BDD
- 전나라동동공주
- 오삼철판볶음
- 오뚜기숯불소금구이
- Java
- SpockFramework
- Spring
- 신미낙지
- Replacation
- SpringCamp2017
- 판교
- nginx
- 진1926
- NVM
- react component
- 양살치살
- SpringCamp
- State
- DockerCompose
Archives
- Today
- Total
Note
Docker Iptables 오류 본문
iptables failed: ~~~ ! -i docker0: iptables: No chain/target/match by that name
위와 같은 오류가 날 경우 아래와 같이 iptables에 DOCKER 체인을 등록해 주면 된다.
iptables -t nat -N DOCKER
iptables -t nat -A PREROUTING -m addrtype --dst-type LOCAL -j DOCKER
iptables -t nat -A PREROUTING -m addrtype --dst-type LOCAL ! --dst 127.0.0.0/8 -j DOCKER
'Dev > Etc' 카테고리의 다른 글
Nginx Loadbalance 설정 (0) | 2019.11.24 |
---|---|
CentOS 메일서버 설정 및 자바에서 메일 발송하기 (0) | 2019.11.24 |
Docker Container (0) | 2019.11.24 |
Docker 기본 사용법 (0) | 2019.11.24 |
MariaDB Replication(복제) 설정 (0) | 2019.11.24 |
Comments