You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
errorMsg: "Sorry, you cannot use privileged ports on the host (below 1024): 80",
677
-
},
678
-
{
679
-
isTarget: isMicrosoftWSL,
680
-
ports: []string{"127.0.0.1:81:81/tcp"},
681
-
errorMsg: "Sorry, you cannot use privileged ports on the host (below 1024): 81",
682
-
},
683
-
{
684
-
isTarget: isMicrosoftWSL,
685
-
ports: []string{"127.0.0.1:81:81/udp"},
686
-
errorMsg: "Sorry, you cannot use privileged ports on the host (below 1024): 81",
687
-
},
688
-
{
689
-
isTarget: isMicrosoftWSL,
690
-
ports: []string{"127.0.0.1:80-83:80-83/tcp"},
691
-
errorMsg: "Sorry, you cannot use privileged ports on the host (below 1024): 80",
692
-
},
693
-
{
694
-
isTarget: isMicrosoftWSL,
695
-
ports: []string{"127.0.0.1:80-83:80-83/udp"},
696
-
errorMsg: "Sorry, you cannot use privileged ports on the host (below 1024): 80",
697
-
},
698
-
{
699
-
isTarget: true,
700
637
ports: []string{"80"},
701
638
errorMsg: "",
702
639
},
703
640
{
704
-
isTarget: true,
705
641
ports: []string{"80", "65535", "65536"},
706
642
errorMsg: "Sorry, one of the ports provided with --ports flag is outside range: 65536",
707
643
},
708
644
{
709
-
isTarget: true,
710
645
ports: []string{"0", "80", "65535"},
711
646
errorMsg: "Sorry, one of the ports provided with --ports flag is outside range: 0",
712
647
},
713
648
{
714
-
isTarget: true,
715
649
ports: []string{"cats"},
716
650
errorMsg: "Sorry, one of the ports provided with --ports flag is not valid: cats",
717
651
},
718
652
{
719
-
isTarget: true,
720
653
ports: []string{"127.0.0.1:81:0/tcp"},
721
654
errorMsg: "Sorry, one of the ports provided with --ports flag is outside range: 0",
722
655
},
723
656
{
724
-
isTarget: true,
725
657
ports: []string{"127.0.0.1:81:65536/tcp"},
726
658
errorMsg: "Sorry, one of the ports provided with --ports flag is not valid [127.0.0.1:81:65536/tcp] (Invalid containerPort: 65536)",
727
659
},
728
660
{
729
-
isTarget: true,
730
661
ports: []string{"1-65536:80-81/tcp"},
731
662
errorMsg: "Sorry, one of the ports provided with --ports flag is not valid [1-65536:80-81/tcp] (Invalid hostPort: 1-65536)",
732
663
},
733
664
{
734
-
isTarget: true,
735
665
ports: []string{"1-80:0-81/tcp"},
736
666
errorMsg: "Sorry, one of the ports provided with --ports flag is not valid [1-80:0-81/tcp] (Invalid ranges specified for container and host Ports: 0-81 and 1-80)",
737
667
},
738
668
{
739
-
isTarget: true,
740
669
ports: []string{"1-80:1-65536/tcp"},
741
670
errorMsg: "Sorry, one of the ports provided with --ports flag is not valid [1-80:1-65536/tcp] (Invalid containerPort: 1-65536)",
0 commit comments