16 lines
402 B
YAML
16 lines
402 B
YAML
services:
|
|
mikrotik-bridge:
|
|
build:
|
|
context: ./
|
|
dockerfile: Dockerfile.bridge
|
|
container_name: mikrotik-kuma-bridge
|
|
restart: always
|
|
ports:
|
|
- "3000:3000"
|
|
environment:
|
|
- KUMA_BASE_URL=http://uptime-kuma:3001/api/push
|
|
- MAPPING_FILE=mapping.json
|
|
- WEBHOOK_SECRET=MySuperSecretToken123!
|
|
volumes:
|
|
- ./bridge/mapping.json:/app/mapping.json:ro
|