Sign inSign up

versionz/meshcentral

By versionz

•Updated over 4 years ago

The open source, multi-platform, self-hosted, feature packed web site for remote device management.

Image
0

371

versionz/meshcentral repository overview

⁠MeshCentral

⁠The open source, multi-platform, self-hosted, feature packed web site for remote device management.

⁠Environment Variables

⁠MeshCentral: Environment Variables
NAMEDEFAULT VALUEDescription
DOMAIN_NAMEexample.comYour domain name
SERVER_PORT443The port to connect to MeshCentral with. (443 is recommended)
SERVER_REDIRECT_PORT80Connections over this port will be redirected to the main port.
SERVER_FQDNSERVER_NAME+DOMAIN_NAMEThe FQDN of the server. You will need register this name in your dns server.
SESSION_KEYRandomly GeneratedThe key used to encrypt the data transfers between remote computers and this server
WAN_ONLYfalseDisables LAN features and is intended for cloud/public internet access.
TITLEDOMAIN_NAMEThe title that will be displayed at the login screen
SUB_TITLEMeshCentralThe subtitle that will be displayed at the login screen
MINIFYtrueOptionally minify the websites content for faster loading. (Recommended for cloud deployments)
USER_NAME_IS_EMAILfalseWhen true, users are registers and will have to login with their email address.
⁠Lest Encrypt: Environment Variables
NAMEDEFAULT VALUEDescription
LETS_ENCRYPT_EMAILadmin@${DOMAIN_NAME}LETS_ENCRYPT_EMAIL
LETS_ENCRYPT_NAMES${SERVER_FQDN}LETS_ENCRYPT_NAMES
LETS_ENCRYPT_KEY_SIZE3072LETS_ENCRYPT_KEY_SIZE
LETS_ENCRYPT_PRODUCTIONtrueLETS_ENCRYPT_PRODUCTION
⁠Compose
services:
  meshcentral:
    image: versionz/meshcentral:latest
    environment:
      DOMAIN_NAME: example.com
      SERVER_NAME: remote
      TITLE: Example.com Remote Access
      SUB_TITLE: MeshCentral
      WAN_ONLY: true
    ports:
      - target: 80
        published: 80
        protocol: tcp
        mode: host
      - target: 443
        published: 443
        protocol: tcp
        mode: host
      - target: 4433
        published: 4433
        protocol: tcp
        mode: host
    volumes:
      - type: volume
        source: mesh-backup
        target: /app/meshcentral/meshcentral-backup
      - type: volume
        source: mesh-data
        target: /app/meshcentral/meshcentral-data
      - type: volume
        source: mesh-files
        target: /app/meshcentral/meshcentral-files

volumes:
  mesh-data:
  mesh-files:
  mesh-backup:

Tag summary

Content type

Image

Digest

Size

504 MB

Last updated

over 4 years ago

docker pull versionz/meshcentral