aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBernhard Guillon <Bernhard.Guillon@begu.org>2026-07-06 22:06:46 +0200
committerBernhard Guillon <Bernhard.Guillon@begu.org>2026-07-06 22:06:46 +0200
commitdf0994430c8f36d61b129f4e71cd0e643b735eee (patch)
tree41017c732383ac530e8db24e849ae1cec4cf22ad
parent990f6e2aacbbb6869259390d973fde30fac13501 (diff)
downloadsourcewatch-df0994430c8f36d61b129f4e71cd0e643b735eee.tar.gz
sourcewatch-df0994430c8f36d61b129f4e71cd0e643b735eee.zip
Add Podman to README
-rw-r--r--README.md5
1 files changed, 4 insertions, 1 deletions
diff --git a/README.md b/README.md
index ae616d2..16b7eb2 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
# sourcewatch
-A file synchronization tool that watches a source directory and syncs changes to a destination, respecting `.gitignore` rules. Designed to run in Docker on Windows with a read-only bind mount.
+A file synchronization tool that watches a source directory and syncs changes to a destination, respecting `.gitignore` rules. Designed to run in Docker/Podman on Windows with a read-only bind mount.
## How it works
@@ -15,6 +15,9 @@ docker run -v /path/to/source:/host:ro -v watchdata:/data sourcewatch
# Windows
docker run -v c:\source:/host:ro -v watchdata:/data sourcewatch
+
+# Podman (same syntax)
+podman run -v c:\source:/host:ro -v watchdata:/data sourcewatch
```
## Flags