neko/.docker
2023-04-01 22:59:39 +02:00
..
base add h264parse to nvidia pipeline 2023-04-01 22:59:39 +02:00
brave Add nvidia docker gpu acceleration (#238) 2023-03-17 01:12:35 +01:00
chromium fix nvidia chromium. 2023-03-17 18:27:34 +01:00
firefox add role browser to openbox. 2022-11-20 14:40:35 +01:00
google-chrome Add nvidia docker gpu acceleration (#238) 2023-03-17 01:12:35 +01:00
kde kde disable autolock, fixes #266. 2023-03-25 22:09:17 +01:00
microsoft-edge Add nvidia docker gpu acceleration (#238) 2023-03-17 01:12:35 +01:00
opera opera fetch latest. 2022-11-20 14:41:36 +01:00
remmina remmina set password already encrypts it. 2022-03-18 23:07:24 +01:00
tor-browser fix tor browser folder name. 2022-12-13 23:53:50 +01:00
ungoogled-chromium allow downloads folder in chrome policies. 2022-11-23 00:03:51 +01:00
vivaldi allow downloads folder in chrome policies. 2022-11-23 00:03:51 +01:00
vlc rename to .docker, fixes #95. 2021-11-27 14:23:33 +01:00
xfce rename to .docker, fixes #95. 2021-11-27 14:23:33 +01:00
.env.default rename to .docker, fixes #95. 2021-11-27 14:23:33 +01:00
build Add nvidia docker gpu acceleration (#238) 2023-03-17 01:12:35 +01:00
README.md doxc fix mistake. 2022-01-19 18:47:01 +01:00
rebuild-server fix build. 2023-03-17 20:47:53 +01:00
serve-client upgrade node version in serve script. 2023-03-18 12:59:44 +01:00
start-server add gpu flag to start server. 2023-03-17 18:28:13 +01:00

How to contribute to neko

If you want to contribute, but do not want to install anything on your host system, we got you covered. You only need docker. Technically, it could be done using vs code development in container, but this is more fun:).

You need to copy .env.default to .env and customize values.

Step 1: Building server

  • ./build - You can use this command to build your specified SERVER_TAG along with base image.

If you want, you can build other tags. base tag needs to be build first:

  • ./build base
  • ./build firefox
  • ./build chromium
  • ./build google-chrome
  • etc...

Step 2: Starting server

  • ./start-server - Starting server image you specified in .env.
  • ./start-server -r - Shortcut for rebuilding server binary and then starting.

If you are changing something in the server code, you do not want to rebuild container each time. You can just rebuild your binary:

  • ./rebuild-server - Rebuild only server binary.
  • ./rebuild-server -f - Force to rebuild whole Golang environment (you should do this only of you change some dependencies).

Step 3: Serving client

  • ./serve-client - Serving vue.js client.
  • ./serve-client -i - Install all dependencies.

Debug

You can navigate to CLIENT_PORT and see live client there. It will be connected to your local server on SERVER_PORT.

If you are leaving client as is and not changing it, you don't need to start ./serve-client and you can access server's GUI directly on SERVER_PORT.

Feel free to open new PR.