Skip to content

Commit

Permalink
add to docs faq: Run neko without docker on host #314.
Browse files Browse the repository at this point in the history
  • Loading branch information
m1k1o committed Mar 28, 2024
1 parent e754e66 commit d1f1be4
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion docs/getting-started/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Check if you did not forget to add cap_add to your docker-compose file.
- SYS_ADMIN
```
# How can I embed the Neko desktop into web page without login prompt coming up for viewers?
## How can I embed the Neko desktop into web page without login prompt coming up for viewers?
You can use the following URL to embed the Neko desktop into a web page without login prompt coming up for viewers:
Expand All @@ -49,3 +49,9 @@ http://<your-neko-server-ip>:8080/?usr=neko&pwd=neko
https://stackoverflow.com/questions/15276929/how-to-make-a-video-fullscreen-when-it-is-placed-inside-an-iframe

Your iframe needs an attribute: `allowfullscreen="true" webkitallowfullscreen="true" mozallowfullscreen="true"` or more modern `allow="fullscreen *"`. For the second you can remove the star if your iframe has the same origin or replace it with your iframe origin.

## Can I use neko without docker?

It is strongly recommended to use Neko with Docker, as it is the easiest way to run it. But you should be able to install Neko "natively" on your host system. Neko is based on Debian and uses Xorg and Pulseaudio. You would just need to follow steps that are in Dockerfile, install all dependencies on your host system and then just run it.

However, it is recommend to start with existing system that has GUI with desktop manager, is based on Xorg and uses Pulseaudio (e.g. Ubuntu Desktop 22.04). For that matter you only need to install gstreamer dependencies, configure pulseaudio properly and run neko binary (you don't need to build it from scratch, you can copy it from docker image).

0 comments on commit d1f1be4

Please sign in to comment.