Files
IT_Tool/docker-compose.yml

35 lines
840 B
YAML
Raw Normal View History

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
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
volumes:
nexusrmm_pgdata:
name: nexusrmm_pgdata
nexusrmm_meshdata:
name: nexusrmm_meshdata
nexusrmm_meshfiles:
name: nexusrmm_meshfiles