Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 691 Bytes

File metadata and controls

28 lines (20 loc) · 691 Bytes

Docker for Moonlight-Web

Run with

docker run -d -p 8080:8080 -p 40000-40100:40000-40100/udp -e WEBRTC_NAT_1TO1_HOST=YOUR_LAN_IP mrcreativ3001/moonlight-web-stream:latest

and replace YOUR_LAN_IP with the device ip address of the local network.

Running with a TURN server

  1. Copy the docker-compose.with-turn.yaml into your own docker-compose.yaml.

  2. Create a new .env file with:

ML_WEB_VERSION=latest

LAN_ADDRESS=127.0.0.1 # Change this to the device ip address of the local network.

TURN_URL=myturn.com
TURN_USERNAME=myrandomuser
TURN_CREDENTIAL=myrandompass
  1. Run with docker-compose
docker compose up