Skip to content
Snippets Groups Projects
Commit 6fb58c2c authored by Armin Co's avatar Armin Co
Browse files

Documentation

parent 301e6efc
Branches
Tags
No related merge requests found
# noVNC # noVNC
Docker-Image for noVNC and docker-compose example to create a "virtual class room". Docker-Image for noVNC and docker-compose example to create a "virtual class room".
## Acess
As long as you not provide a reverse proxy configuration the VNC-Rooms will be available add your servers IP address and the port `6081` and following
as configured in the docker-compose file.
## Connect
You need a vnc server to show your screen in a rooom.
For example you can use x11vnc.
```sh
# Connecting to a room
x11vnc -nopw -noxdamage -connect "server_adress:5500"
```
## Configuration
To create multiple rooms you can duplicate the configuration in the docker-compose.yml file for any of the novnc_x services.
Change the password and change the ports to some that are not already used.
\ No newline at end of file
...@@ -17,3 +17,14 @@ services: ...@@ -17,3 +17,14 @@ services:
- 5500:5500 # vnc listening viewer - 5500:5500 # vnc listening viewer
restart: always restart: always
command: ["./novnc_start.sh", "testcvh_password"] command: ["./novnc_start.sh", "testcvh_password"]
# Create as many rooms as you want...
# For example for a student
novnc_2:
container_name: novnc_2 # is also the hostname
image: novnc
ports:
- 6082:6080 # webinterface port
- 5501:5500 # vnc listening viewer
restart: always
command: ["./novnc_start.sh", "student"]
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment