diff --git a/Package.resolved b/Package.resolved index 096f2a124..0547ea14f 100644 --- a/Package.resolved +++ b/Package.resolved @@ -1,5 +1,5 @@ { - "originHash" : "35bc2671f390e35180f5faebf484bac6f121b3f2f1c087b55f7aaf09aa03c756", + "originHash" : "eb169a41db930efa5f893a7b7333049fbc2072e42fc329c8e3959adeff2c3441", "pins" : [ { "identity" : "async-http-client", @@ -15,8 +15,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/apple/containerization.git", "state" : { - "revision" : "49276e8d0a27b6a94b1dc6adc1ed88aa4bb42623", - "version" : "0.0.2" + "revision" : "19778a2bf3979fb5da16531b8855ca0f354b3d74", + "version" : "0.0.3" } }, { diff --git a/Package.swift b/Package.swift index 37fcbc6da..0dfcedd30 100644 --- a/Package.swift +++ b/Package.swift @@ -26,7 +26,7 @@ if let path = ProcessInfo.processInfo.environment["CONTAINERIZATION_PATH"] { scDependency = .package(path: path) scVersion = "latest" } else { - scVersion = "0.0.2" + scVersion = "0.0.3" if let containerizationRepo = ProcessInfo.processInfo.environment["CONTAINERIZATION_REPO"], containerizationRepo != "" { scDependency = .package(url: containerizationRepo, exact: Version(stringLiteral: scVersion)) } else { diff --git a/Sources/Services/ContainerSandboxService/SandboxService.swift b/Sources/Services/ContainerSandboxService/SandboxService.swift index 5f448d86e..79f055310 100644 --- a/Sources/Services/ContainerSandboxService/SandboxService.swift +++ b/Sources/Services/ContainerSandboxService/SandboxService.swift @@ -264,7 +264,7 @@ public actor SandboxService { for mount in config.mounts { if try mount.isSocket() { let socket = UnixSocketConfiguration( - host: URL(filePath: mount.source), + source: URL(filePath: mount.source), destination: URL(filePath: mount.destination) ) container.sockets.append(socket)