Skip to content

Latest commit

 

History

History
36 lines (25 loc) · 784 Bytes

README.md

File metadata and controls

36 lines (25 loc) · 784 Bytes

phantom - bedrock proxy for xbox & ps

This docker images simulates a LAN Server and proxies the packets to the real server. Xbox & playstation user will see them as LAN Servers in the Serverlist.

To run multiple proxies just start another container.

Run container with docker

docker run -d --env "SERVER=172.17.17.88:19132" --network host ghcr.io/andybroger/phantom:latest

Run with docker compose

version: "3"

services:
  phantom:
    image: ghcr.io/andybroger/phantom:latest
    restart: always
    network_mode: host
    environment:
      SERVER: "172.17.17.88:19132"

Build the container

docker build . -t phantom:latest

Credits

Thanks to Justin Head for developing the phantom proxy!