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