File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -62,22 +62,22 @@ development will be as convenient as a local installation. With the benefit that
6262do not have to build ps4sdk yourself. However, the image is a bit large due to the clang tool-chain.
6363
6464``` bash
65- # Make sure newest container is used
66- docker pull ps4dev/ps4sdk
65+ # Make sure newest container is used (only do this as needed because you will pull a new one for every commit)
66+ docker pull ps4dev/elf-loader
6767# Run docker for interactive development
6868# It should not be used to store data (-rm will auto remove it after exit)
6969# See volumes/-v on how to mount your code into the container
70- docker run (-v ... ) -rm -i -t ps4dev/ps4sdk bash
70+ docker run (-v ... ) -- rm -i -t ps4dev/ps4sdk bash
7171```
7272
7373From there, you can clone the elf-loader and examples into your volume, build and use them.
7474A stand alone elf-loader container is also available (but currently a bit large):
7575
7676``` bash
77- # Make sure newest container is used
77+ # Make sure newest container is used (only do this as needed)
7878docker pull ps4dev/elf-loader
7979# Run the elf loader (listens on port 5350)
80- docker run -p 5350:5350 -rm ps4dev/elf-loader&
80+ docker run -p 5350:5350 -- rm ps4dev/elf-loader&
8181# Stop elf loader
8282docker kill $( docker ps -q -f ancestor=ps4dev/elf-loader)
8383```
You can’t perform that action at this time.
0 commit comments