2026-03-19 11:41:43 +01:00
|
|
|
services:
|
|
|
|
|
nexusrmm-postgres:
|
|
|
|
|
image: postgres:17
|
|
|
|
|
container_name: nexusrmm-postgres
|
|
|
|
|
environment:
|
|
|
|
|
POSTGRES_DB: nexusrmm
|
|
|
|
|
POSTGRES_USER: nexusrmm
|
|
|
|
|
POSTGRES_PASSWORD: nexusrmm_dev
|
|
|
|
|
ports:
|
|
|
|
|
- "5433:5432"
|
|
|
|
|
volumes:
|
|
|
|
|
- nexusrmm_pgdata:/var/lib/postgresql/data
|
|
|
|
|
restart: unless-stopped
|
|
|
|
|
|
2026-03-19 14:39:49 +01:00
|
|
|
meshcentral:
|
|
|
|
|
image: ghcr.io/ylianst/meshcentral:latest
|
|
|
|
|
container_name: nexusrmm-meshcentral
|
|
|
|
|
ports:
|
|
|
|
|
- "4430:4430"
|
|
|
|
|
- "4431:4431"
|
|
|
|
|
volumes:
|
|
|
|
|
- nexusrmm_meshdata:/opt/meshcentral/meshcentral-data
|
|
|
|
|
- nexusrmm_meshfiles:/opt/meshcentral/meshcentral-files
|
|
|
|
|
restart: unless-stopped
|
|
|
|
|
depends_on:
|
|
|
|
|
- nexusrmm-postgres
|
|
|
|
|
|
2026-03-19 11:41:43 +01:00
|
|
|
volumes:
|
|
|
|
|
nexusrmm_pgdata:
|
|
|
|
|
name: nexusrmm_pgdata
|
2026-03-19 14:39:49 +01:00
|
|
|
nexusrmm_meshdata:
|
|
|
|
|
name: nexusrmm_meshdata
|
|
|
|
|
nexusrmm_meshfiles:
|
|
|
|
|
name: nexusrmm_meshfiles
|