Change example values

This commit is contained in:
dselen 2025-03-31 16:03:43 +02:00 committed by GitHub
parent 46f77841e2
commit 9464c1b01a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -83,10 +83,9 @@ services:
image: ghcr.io/ylianst/meshcentral:<tag> image: ghcr.io/ylianst/meshcentral:<tag>
environment: environment:
- HOSTNAME=myserver.domain.com - HOSTNAME=myserver.domain.com
- ALLOW_NEW_ACCOUNTS=true - ALLOW_NEW_ACCOUNTS=false
- USE_MONGODB=true - USE_MONGODB=true
- MONGO_HOST=mongodb - MONGO_URL=mongodb://username:password@mongodb:27017/meshcentral
- MONGO_PORT=27017
volumes: volumes:
- meshcentral-data:/opt/meshcentral/meshcentral-data - meshcentral-data:/opt/meshcentral/meshcentral-data
ports: ports:
@ -177,4 +176,4 @@ If you want to disable both HTML/JS minification and translation during the buil
```sh ```sh
docker build -f docker/Dockerfile --build-arg DISABLE_MINIFY=no --build-arg DISABLE_TRANSLATE=no -t meshcentral . docker build -f docker/Dockerfile --build-arg DISABLE_MINIFY=no --build-arg DISABLE_TRANSLATE=no -t meshcentral .
``` ```