Skip to content

Commit bd1f780

Browse files
authored
Merge pull request #67 from exdx/docs/windows
docs: Add Windows support
2 parents 1f3071e + eb9a0c1 commit bd1f780

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dcp"
3-
version = "0.3.2"
3+
version = "0.4.0"
44
edition = "2021"
55
license = "MIT"
66
description = "A utility tool to copy container filesystems easily"

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ crates.io.
4242
### Download compiled binary
4343

4444
The [release section](https://github.com/exdx/dcp/releases) has a number
45-
of precompiled versions of dcp for different platforms. Currently only Linux and
46-
MacOS are pre-built. For MacOS, both arm and x86 targets are provided, and
45+
of precompiled versions of dcp for different platforms. Linux, macOS, and Windows (experimental)
46+
binaries are pre-built. For MacOS, both arm and x86 targets are provided, and
4747
for Linux only x86 is provided. If your system is not supported, building dcp from
4848
the source is straightforward.
4949

@@ -118,14 +118,13 @@ will then be able to notice the image locally pulled and process it.
118118
------------------
119119
**Q**: Is dcp supported on Windows?
120120

121-
**A**: Windows support is being tracked in [#14](https://github.com/exdx/dcp/issues/14). Outside of changing the socket paths, there may not be any other work required to support Windows.
121+
**A**: Yes, dcp is supported on Windows. Windows support is experimental, as there is no CI coverage, but it should work with the default Docker Desktop.
122122

123123
------------------
124124
**Q**: I would like to inspect image labels to figure out where in the filesystem I should copy from. Does dcp have an `inspect` command to list image labels?
125125

126126
**A**: Listing an image's labels can be done easily using the underlying container runtime. For example, run `docker image inspect <image-id> | grep Labels` to see labels attached to an image. From there, dcp can be used to copy files from the container filesystem.
127127

128-
129128
## Testing
130129

131130
If you would like to run the test suite, you just need to run the standard cargo command. This will run all relevant

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ extern crate pretty_env_logger;
1515
#[macro_use]
1616
extern crate log;
1717

18-
pub const VERSION: &str = "0.3.2";
18+
pub const VERSION: &str = "0.4.0";
1919

2020
#[derive(Debug)]
2121
pub struct Config {

0 commit comments

Comments
 (0)