Skip to main content
Version: v3

Installation

The preferred way to install Neko is to use Docker. This method is easy to set up and manage, it contains all the necessary dependencies, and it is isolated from the host system. Other installation methods are out of scope for this documentation.

Docker Run

To start a basic Neko container, use the following command:

docker run -d --rm \
-p 8080:8080 \
-p 56000-56100:56000-56100/udp \
-e NEKO_WEBRTC_EPR=56000-56100 \
-e NEKO_WEBRTC_NAT1TO1=127.0.0.1 \
-e NEKO_MEMBER_MULTIUSER_USER_PASSWORD=neko \
-e NEKO_MEMBER_MULTIUSER_ADMIN_PASSWORD=admin \
ghcr.io/m1k1o/neko/firefox:latest

Explanation

  • -d --rm - Run the container in the background and automatically remove the container when it exits.
  • -p 8080:8080 - Map the container's port 8080 to the host's port 8080.
  • -p 56000-56100:56000-56100/udp - Map the container's UDP ports 56000-56100 to the host's ports 56000-56100.
  • -e NEKO_WEBRTC_EPR=56000-56100 - Set the WebRTC endpoint range, this value must match the mapped ports above.
  • -e NEKO_WEBRTC_NAT1TO1=127.0.0.1 - Set the address where the WebRTC client should connect to.
    • To test only on the local computer, use 127.0.0.1.
    • To use it in a private network, use the host's IP address (e.g., 192.168.1.5).
    • To use it in a public network, you need to correctly set up port forwarding on your router and remove this env variable.
    • See WebRTC Server IP Address for more information about this setting.
  • -e NEKO_MEMBER_MULTIUSER_USER_PASSWORD=neko - Set the password for the user account.
  • -e NEKO_MEMBER_MULTIUSER_ADMIN_PASSWORD=admin - Set the password for the admin account.
  • ghcr.io/m1k1o/neko/firefox:latest - The Docker image to use.

Now, open your browser and go to: http://localhost:8080. You should see the Neko interface.

Further Configuration

You can configure Neko by setting environment variables or configuration file. See the Configuration Reference for more information.

Docker Compose

You can also use Docker Compose to run Neko. It is preferred to use Docker Compose for running Neko in production because you can easily manage the container, update it, and configure it.

Create a docker-compose.yml file with the following content:

docker-compose.yaml
services:
neko:
image: ghcr.io/m1k1o/neko/firefox:latest
restart: unless-stopped
ports:
- "8080:8080"
- "56000-56100:56000-56100/udp"
environment:
NEKO_WEBRTC_EPR: "56000-56100"
NEKO_WEBRTC_NAT1TO1: "127.0.0.1"
NEKO_MEMBER_MULTIUSER_USER_PASSWORD: "neko"
NEKO_MEMBER_MULTIUSER_ADMIN_PASSWORD: "admin"

Then, run the following command:

docker compose up -d

To stop Neko, run:

docker compose down

To update Neko, run:

docker compose pull
docker compose up -d

Learn more about how compose works.

note

You need to be in the same directory as the docker-compose.yml file to run the docker compose commands.

Next Steps