https://github.com/mlafeldt/docker-ps3dev
A Docker Image for PS3 Development
https://github.com/mlafeldt/docker-ps3dev
docker-image homebrew ps3 sdk
Last synced: about 1 year ago
JSON representation
A Docker Image for PS3 Development
- Host: GitHub
- URL: https://github.com/mlafeldt/docker-ps3dev
- Owner: mlafeldt
- License: mpl-2.0
- Archived: true
- Created: 2017-08-13T19:13:56.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2024-03-13T14:37:51.000Z (over 2 years ago)
- Last Synced: 2025-02-24T07:47:57.974Z (over 1 year ago)
- Topics: docker-image, homebrew, ps3, sdk
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/mlafeldt/ps3dev/
- Size: 16.6 KB
- Stars: 11
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# A Docker Image for PS3 Development
## Note: This project is no longer maintained. Please use https://github.com/ps3dev/ps3dev-docker instead.
[](https://microbadger.com/images/mlafeldt/ps3dev)
[](https://hub.docker.com/r/mlafeldt/ps3dev/)
Cross-compile your PS3 homebrew projects inside a Docker container based on
[ps3toolchain](https://github.com/ps3dev/ps3toolchain).
## Quick Start
Run this command in your project's root folder to build it inside a Docker
container:
```bash
docker run -it --rm -v "$PWD:/src" mlafeldt/ps3dev make
```
This will mount the current folder to `/src` in the container and then run
`make` inside `/src`. You may execute other commands, of course.
Omit the command to get a login shell (`/bin/bash`) in the running container:
```bash
docker run -it --rm -v "$PWD:/src" mlafeldt/ps3dev
```
For a working example, use the Docker image to build the
[PSL1GHT samples](https://github.com/ps3dev/PSL1GHT/tree/master/samples).
## Continuous Integration
With the Docker image in hand, you can also build and test your PS3 applications
on CI platforms. Here's an example configuration for Travis CI:
```yaml
# .travis.yml
language: c
sudo: required
services:
- docker
script: docker run -it --rm -v "$PWD:/src" mlafeldt/ps3dev make test
```
## Author
This project is being developed by [Mathias Lafeldt](https://twitter.com/mlafeldt).
I also created a [Docker image for PS2 development](https://github.com/mlafeldt/docker-ps2dev).