-
Notifications
You must be signed in to change notification settings - Fork 3
/
readme.txt
42 lines (26 loc) · 868 Bytes
/
readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
====================
What does this do?
====================
This program will automatically build a docker image with the ps3dev
toolchain ready to be used for homebrew development.
====================
How do I build it?
====================
Build the image:
docker build -t ps3dev-docker .
Copy the helper script:
cp ps3dev-docker.sh /usr/local/bin
==================
How do I use it?
==================
Use the helper script to run 'make' on the current directory:
ps3dev-docker.sh make
Or, manually run 'make' on the current directory:
docker run -v `pwd`:/build ps3dev-docker make
============================
How do I save and load it?
============================
Save the image:
docker save ps3dev-docker | bzip2 > ps3dev-docker.tar.bz2
Load the image:
docker load < bzip2 -dc ps3dev-docker.tar.bz2