Sign inSign up

11notes/novnc

By 11notes

Updated about 1 year ago

Access your container applications via web

Image
Networking
2

1.1K

11notes/novnc repository overview

Banner

🏔️ Alpine - noVNC

size version pulls stars

Access your container applications via web

SYNOPSIS

What can I do with this? Expose any GUI application via the use of DISPLAY as a web application from any other container image.

COMPOSE

services:
  firefox:
    image: "11notes/firefox:stable"
    container_name: "firefox"
    environment:
      TZ: "Europe/Zurich"
      DISPLAY: "novnc:0.0"
    depends_on:
      novnc:
        condition: service_healthy
        restart: true
    networks:
      - "backend"
      - "internet"
  novnc:  
    image: "11notes/novnc:stable"
    environment:
      TZ: "Europe/Zurich"
      DISPLAY_WIDTH: 1024
      DISPLAY_HEIGHT: 768
    ports:
      - "8080:8080/tcp"
    networks:
      - "backend"
      - "frontend"
networks:
  backend:
    internal: true
  frontend:
  internet:

DEFAULT SETTINGS

ParameterValueDescription
userdockeruser docker
uid1000user id 1000
gid1000group id 1000
home/supervisorhome directory of user docker

ENVIRONMENT

ParameterValueDefault
TZTime Zone
DEBUGShow debug information

PARENT IMAGE

SOURCE

BUILT WITH

TIPS

  • Use a reverse proxy like Traefik, Nginx to terminate TLS with a valid certificate
  • Use Let’s Encrypt certificates to protect your SSL endpoints

ElevenNotes™️

This image is provided to you at your own risk. Always make backups before updating an image to a new version. Check the changelog for breaking changes. You can find all my repositories on github.

Tag summary

Content type

Image

Digest

sha256:df4517c5c

Size

58.3 MB

Last updated

about 1 year ago

docker pull 11notes/novnc:stable