Skip to content

Commit

Permalink
better usage example for docker
Browse files Browse the repository at this point in the history
  • Loading branch information
hitodama committed Jun 14, 2016
1 parent a22e469 commit 7b17107
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,9 @@ do not have to build ps4sdk yourself. However, the image is a bit large due to t
# Make sure newest container is used
docker pull ps4dev/ps4sdk
# Run docker for interactive development
# It should not be used to store data (-rm will auto remove it after exit)
# See volumes/-v on how to mount your code into the container
docker run (-v ... ) -i -t ps4dev/ps4sdk bash
docker run (-v ... ) -rm -i -t ps4dev/ps4sdk bash
```

From there, you can clone the elf-loader and examples into your volume, build and use them.
Expand All @@ -76,8 +77,7 @@ A stand alone elf-loader container is also available (but currently a bit large)
# Make sure newest container is used
docker pull ps4dev/elf-loader
# Run the elf loader (listens on port 5350)
docker run -p 5350:5350 -d ps4dev/elf-loader
-> a411...774
docker run -p 5350:5350 -rm ps4dev/elf-loader&
# Stop elf loader
docker kill a411
docker kill $(docker ps -q -f ancestor=ps4dev/elf-loader)
```

0 comments on commit 7b17107

Please sign in to comment.