回答編集履歴

1

誤りの修正

2020/05/15 08:25

投稿

ShigeMasa
ShigeMasa

スコア13

test CHANGED
@@ -8,6 +8,6 @@
8
8
 
9
9
 
10
10
 
11
- PORT=80 PUBLIC_IP=your_public_ip CONTAINER_IP=your_container_ip sudo -E bash -c 'iptables -t nat -I PREROUTING -i eth0 -p TCP -d グローバルIP --dport 80 -j DNAT --to-destination コンテナIP:80 -m comment --comment "forward to the Apache2 container"'
11
+ iptables -t nat -I PREROUTING -i eth0 -p TCP -d グローバルIP --dport 80 -j DNAT --to-destination コンテナIP:80 -m comment --comment "forward to the Apache2 container
12
12
 
13
13
  ```