/pspdev-docker

Automatically build a docker image with the pspdev toolchain ready to be used for homebrew development.

Primary LanguageDockerfileBSD 2-Clause "Simplified" LicenseBSD-2-Clause

pspdev-docker

What does this do?

This program will automatically build a docker image with the pspdev toolchain ready to be used for homebrew development.

How do I build it?

Build the image:

sudo docker build -t pspdev-docker .

Copy the helper script:

sudo cp pspdev-docker /usr/local/bin

How do I use it?

Use the helper script to run commands in the current directory:

pspdev-docker make

How do I save and load it?

Save the image:

sudo docker save pspdev-docker | bzip2 > pspdev-docker.tar.bz2

Load the image:

sudo docker load < bzip2 -dc pspdev-docker.tar.bz2

How do I remove it?

Remove the image:

sudo docker rmi pspdev-docker

Remove the helper script:

sudo rm /usr/local/bin/pspdev-docker