Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
noVNC
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Armin Co
noVNC
Commits
6fb58c2c
Commit
6fb58c2c
authored
Oct 26, 2020
by
Armin Co
Browse files
Options
Downloads
Patches
Plain Diff
Documentation
parent
301e6efc
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
README.md
+22
-1
22 additions, 1 deletion
README.md
docker-compose.yml
+12
-1
12 additions, 1 deletion
docker-compose.yml
with
34 additions
and
2 deletions
README.md
+
22
−
1
View file @
6fb58c2c
# 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
This diff is collapsed.
Click to expand it.
docker-compose.yml
+
12
−
1
View file @
6fb58c2c
...
@@ -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
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment