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