stevenstrike / hippie68-exploit-docker

Docker image for hippie68's exploit.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

hippie68-exploit-docker

Info

Docker image for hippie68's exploit.

Based on Alpine Linux and using python3's embedded webserver.

Uses container port 7001/tcp by default for HTTP.

Usage

docker-compose

---
version: '3.5'
services:
  ps4exploit-host:
    image: stevenstrike/hippie68-exploit-docker:latest
    container_name: ps4exploit-host
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Europe/London
    ports:
      - 7001:7001
    restart: unless-stopped
    networks:
      - ps4exploit_network

networks:
  ps4exploit_network:
    external:
      name: ps4exploit_network

Note: You will need to create a new bridge network adapter, to do so:

docker network create -d bridge ps4exploit_network

docker cli:

docker run -d --name=ps4exploit-host \
-e PGID=1000 -e PUID=1000 -e TZ=Europe/London \
-p 7001:7001 \
--restart unless-stopped \
stevenstrike/hippie68-exploit-docker:latest

Parameters

Container images are configured using parameters passed at runtime (such as those above). These parameters are separated by a colon and indicate <external>:<internal> respectively. For example, -p 8080:80 would expose port 80 from inside the container to be accessible from the host's IP on port 8080 outside the container.

Parameter Function
-p 7001 The port for the webserver
-e PUID=1000 for UserID
-e PGID=1000 for GroupID
-e TZ=Europe/London Specify a timezone

Credits

Credit to hippie68-exploit

About

Docker image for hippie68's exploit.


Languages

Language:Dockerfile 100.0%