Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/windows/inc/docker_schema.h
Original file line number Diff line number Diff line change
Expand Up @@ -273,8 +273,9 @@ struct InspectContainer
ContainerInspectState State;
ContainerConfig Config;
HostConfig HostConfig;
std::vector<Mount> Mounts;

NLOHMANN_DEFINE_TYPE_INTRUSIVE_WITH_DEFAULT(InspectContainer, Id, Name, Created, Image, State, Config, HostConfig);
NLOHMANN_DEFINE_TYPE_INTRUSIVE_WITH_DEFAULT(InspectContainer, Id, Name, Created, Image, State, Config, HostConfig, Mounts);
};

struct InspectExec
Expand Down
6 changes: 4 additions & 2 deletions src/windows/wslcsession/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,17 @@ set(SOURCES
# Volume management
WSLCVhdVolume.cpp
WSLCGuestVolume.cpp
WSLCVolumes.cpp

# Supporting classes
ContainerEventTracker.cpp
DockerEventTracker.cpp
DockerHTTPClient.cpp
IORelay.cpp
ServiceProcessLauncher.cpp
)

set(HEADERS
ContainerEventTracker.h
DockerEventTracker.h
DockerHTTPClient.h
IORelay.h
ServiceProcessLauncher.h
Expand All @@ -44,6 +45,7 @@ set(HEADERS
WSLCVirtualMachine.h
WSLCVhdVolume.h
WSLCGuestVolume.h
WSLCVolumes.h
IWSLCVolume.h
WSLCVolumeMetadata.h)

Expand Down
194 changes: 0 additions & 194 deletions src/windows/wslcsession/ContainerEventTracker.cpp

This file was deleted.

86 changes: 0 additions & 86 deletions src/windows/wslcsession/ContainerEventTracker.h

This file was deleted.

Loading