Files
icinga-satellite/compose.yml

18 lines
690 B
YAML

services:
icinga-satellite:
image: git.ao-it.net/docker/icinga-satellite:latest
init: true
hostname: ${ICINGA_SATELLITE_CN:-satellite.example.com}
restart: always
ports:
- 5665:5665
volumes:
- ./files:/data
- /etc/localtime:/etc/localtime:ro
environment:
ICINGA2_JOIN_TICKET: ${ICINGA_JOIN_TICKET}
ICINGA2_PARENT_HOST: ${ICINGA_PARENT_HOST:-icinga.example.com}
ICINGA2_PARENT_CN: ${ICINGA_PARENT_CN:-icinga.example.com}
ICINGA2_PARENT_ZONE: ${ICINGA_PARENT_ZONE:-master}
ICINGA2_SATELLITE_CN: ${ICINGA_SATELLITE_CN:-satellite.example.com}
ICINGA2_SATELLITE_ZONE: ${ICINGA_SATELLITE_ZONE:-icinga-satellite}