From 93998051557592818c432b4fd1d24493e87b3b6e Mon Sep 17 00:00:00 2001 From: Gabe Date: Thu, 21 May 2026 01:47:31 +0000 Subject: [PATCH] Add Remote-Access_Containers/meshcentral/compose.yaml --- .../meshcentral/compose.yaml | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 Remote-Access_Containers/meshcentral/compose.yaml diff --git a/Remote-Access_Containers/meshcentral/compose.yaml b/Remote-Access_Containers/meshcentral/compose.yaml new file mode 100644 index 0000000..c42b9e1 --- /dev/null +++ b/Remote-Access_Containers/meshcentral/compose.yaml @@ -0,0 +1,26 @@ +services: + meshcentral: + restart: unless-stopped + container_name: meshcentral + image: typhonragewind/meshcentral:latest + #ports: + # - 8090:443 #MeshCentral will moan and try everything not to use port 80, but you can also use it if you so desire, just change the config.json according to your needs + environment: + - HOSTNAME=${SERVICE_NAME}.${DOMAIN_NAME} #your hostname + - REVERSE_PROXY=false #set to your reverse proxy IP if you want to put meshcentral behind a reverse proxy + - REVERSE_PROXY_TLS_PORT= + - IFRAME=false #set to true if you wish to enable iframe support + - ALLOW_NEW_ACCOUNTS=false #set to false if you want disable self-service creation of new accounts besides the first (admin) + - WEBRTC=false #set to true to enable WebRTC - per documentation it is not officially released with meshcentral, but is solid enough to work with. Use with caution + - BACKUPS_PW=${PASSWORD} #password for the autobackup function + - BACKUP_INTERVAL=24 # Interval in hours for the autobackup function + - BACKUP_KEEP_DAYS=10 #number of days of backups the function keeps + volumes: + - /srv/docker/meshcentral/data:/opt/meshcentral/meshcentral-data #config.json and other important files live here. A must for data persistence + - /srv/docker/meshcentral/user_files:/opt/meshcentral/meshcentral-files #where file uploads for users live + - /srv/docker/meshcentral/backups:/opt/meshcentral/meshcentral-backups #Backups location + +networks: + default: + external: true + name: nginx \ No newline at end of file