Files
MikrotikManager/deploy/updater/targets.json.example
T
Denozordec 63252ae85e
Docker images / backend-image (push) Successful in 38s
Docker images / frontend-image (push) Successful in 40s
Docker images / updater-image (push) Successful in 45s
Docker images / notify-webhook (push) Has been skipped
chore: enhance image reference resolution in updater script
- Added functionality to resolve image references with digests, improving the rollback process in the updater script.
- Updated health check URLs in targets.json.example to use service names instead of localhost, ensuring proper connectivity in containerized environments.
2026-05-12 15:12:23 +07:00

25 lines
562 B
JSON

{
"targets": [
{
"id": "backend",
"container_name": "mmapp-backend",
"image": "git.shts.su/denozord/mikrotikmanager-backend:latest",
"health": {
"type": "http",
"url": "http://backend:8000/health",
"expect_status": 200
}
},
{
"id": "frontend",
"container_name": "mmapp-frontend",
"image": "git.shts.su/denozord/mikrotikmanager-frontend:latest",
"health": {
"type": "http",
"url": "http://frontend:3000/",
"expect_status": 200
}
}
]
}