From d6dc0638581325ec44377252e22cf4e69bbee488 Mon Sep 17 00:00:00 2001 From: Tal Ziv Date: Tue, 4 Oct 2022 10:10:43 +0300 Subject: [PATCH 1/2] Added Dockerfile --- Dockerfile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..209df6c --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +FROM trafex/php-nginx +USER root +RUN apk add git +WORKDIR /app +RUN git clone https://github.com/ajgon/bgtoolset.git &&\ + rm /var/www/html/* &&\ + mv bgtoolset/* /var/www/html +EXPOSE 8080 +USER nobody From a70527003f866ca0d5ef78cc320403c22337242a Mon Sep 17 00:00:00 2001 From: Tal Ziv Date: Tue, 4 Oct 2022 10:19:29 +0300 Subject: [PATCH 2/2] Added docker instructions --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index e62f505..cfd8c36 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,4 @@ + # bgtoolset This is a dump of excellent Ps3xploit Team [bgtoolset](https://www.ps3xploit.net/bgtoolset/). **I'm not an author of any of these tools**, all credits go to @@ -30,3 +31,12 @@ website goes down. | SLIM | CECH-2503B | 4.88 | ✅ | E-mail info | | SLIM | CECH-2504 | 4.88 | ✅ | [Twitter](https://twitter.com/leerz25/status/1555749812988809216#m) | | FAT | CECH-J03 | 4.87 | ✅ | Myself | + +## Docker Instructions +- Clone repository +- Install Docker: https://docs.docker.com/get-docker/ +- build image: +> docker build -t bgtools:1.1.0.0.3 . +- Run the image: +> docker run -i -t --rm -p 8080:8080 bgtools:1.1.0.0.3 +- Open local browser at http://localhost:8080 or using your PC local IP through the PS3 for example http://192.168.1.100:8080 just make sure to replace 192.168.1.100 with your local IP.