Skip to content

Commit

Permalink
fix: filter unsupported enable_icc option (#36)
Browse files Browse the repository at this point in the history
Signed-off-by: Cezar Rata <[email protected]>
  • Loading branch information
cezar-r authored Sep 11, 2024
1 parent 5d9b1e0 commit 6c5e72d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions internal/service/network/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ func (s *service) Create(ctx context.Context, request types.NetworkCreateRequest
if v != "0.0.0.0" {
s.logger.Warnf("network option com.docker.network.bridge.host_binding_ipv4 is set to %s, but it must be 0.0.0.0", v)
}
case "com.docker.network.bridge.enable_icc":
s.logger.Warnf("network option com.docker.network.bridge.enable_icc is not currently supported in nerdctl", v)
case "com.docker.network.bridge.name":
bridge = v
default:
Expand Down

0 comments on commit 6c5e72d

Please sign in to comment.