17 lines
369 B
YAML
17 lines
369 B
YAML
services:
|
|
app:
|
|
image: ghcr.io/unpoller/unpoller:${UNPOLLER_VERSION:-latest}
|
|
container_name: unifi-poller-app
|
|
volumes:
|
|
- ${UNPOLLER_UP_CONF_PATH}:/etc/unpoller/up.conf
|
|
networks:
|
|
- monitor_network
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
memory: 512m
|
|
restart: unless-stopped
|
|
|
|
networks:
|
|
monitor_network:
|
|
external: true |