migrate
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
version: '3'
|
||||
services:
|
||||
meshcentral:
|
||||
restart: always
|
||||
container_name: meshcentral
|
||||
image: typhonragewind/meshcentral:latest
|
||||
ports:
|
||||
- 8086: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=mesh.mikeandrebel.com #your hostname
|
||||
- REVERSE_PROXY=107.175.245.171 #set to your reverse proxy IP if you want to put meshcentral behind a reverse proxy
|
||||
- REVERSE_PROXY_TLS_PORT=443
|
||||
- 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=true #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
|
||||
- TZ=America/New_York
|
||||
- BACKUPS_PW=!password #password for the autobackup function
|
||||
- BACKUP_INTERVAL=24 # Interval in hours for the autobackup function
|
||||
- BACKUP_KEEP_DAYS=3 #number of days of backups the function keeps
|
||||
volumes:
|
||||
- ./data:/opt/meshcentral/meshcentral-data #config.json and other important files live here. A must for data persistence
|
||||
- ./user_files:/opt/meshcentral/meshcentral-files #where file uploads for users live
|
||||
- ./backups:/opt/meshcentral/meshcentral-backups #Backups location
|
||||
@@ -0,0 +1,23 @@
|
||||
services:
|
||||
# Remmina - Remote Desktop Client
|
||||
remmina:
|
||||
image: lscr.io/linuxserver/remmina:latest
|
||||
container_name: remmina
|
||||
security_opt:
|
||||
- no-new-privileges:true
|
||||
restart: unless-stopped
|
||||
profiles: ["core", "all"]
|
||||
networks:
|
||||
- default
|
||||
# DEVICES-GPU-PLACEHOLDER-DO-NOT-DELETE
|
||||
ports:
|
||||
- "$REMMINA_PORT:3000"
|
||||
# - "3001:3001" # HTTPS
|
||||
volumes:
|
||||
- $DOCKERDIR/appdata/remmina:/config
|
||||
environment:
|
||||
PUID: $PUID
|
||||
PGID: $PGID
|
||||
TZ: $TZ
|
||||
# DRINODE: /dev/dri/renderD128
|
||||
# DOCKER-LABELS-PLACEHOLDER
|
||||
Reference in New Issue
Block a user