Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README - add link and example for [PiShrink dockerized] #180

Closed
wants to merge 2 commits into from
Closed
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
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,25 @@ If you specify the `newimagefile.img` parameter, the script will make a copy of

Default options for compressors can be overwritten by defining PISHRINK_GZIP or PSHRINK_XZ environment variables for gzip and xz.

## Running with Docker (e.g. MacOS is not supported directly) ##

You can use [PiShrink dockerized](https://hub.docker.com/r/mgomesborges/pishrink)

1. Install Docker Desktop on Mac

1. Make a copy of a Raspberry Pi SD card that you want to shrink (see instructions here).

1. Using the Terminal, access the directory containing the Raspberry Pi image: ```cd ~/Directory-with-RPi-image```

1. Run PiShrink dockerized:

```
docker run --privileged=true --rm \
--volume $(pwd):/workdir \
mgomesborges/pishrink \
pishrink -pZv IMAGE_NAME.img NEW-IMAGE_NAME.img
```

## Prerequisites ##

If you are running PiShrink in VirtualBox you will likely encounter an error if you
Expand Down