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 |
Tags
- Replacation
- nginx
- react
- MariaDB
- Java
- NVM
- 오삼철판볶음
- SetMail
- SpringCamp2019
- Spring
- DockerCompose
- Hook
- SpockFramework
- react component
- 바스트로37
- State
- BDD
- 양살치살
- SpringCamp2017
- NapuCon2016
- useEffect
- 판교
- 전나라동동공주
- 오뚜기숯불소금구이
- 신미낙지
- docker
- 고릴라볼링장
- SpringCamp
- 진1926
- 강다니엘
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