migrate
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
---
|
||||
services:
|
||||
<< service_name >>:
|
||||
image: docker.io/louislam/uptime-kuma:2.3.2
|
||||
container_name: << container_name >>
|
||||
restart: << restart_policy >>
|
||||
ports:
|
||||
- "<< ports_http >>:3001"
|
||||
volumes:
|
||||
- uptimekuma-data:/app/data
|
||||
|
||||
volumes:
|
||||
uptimekuma-data:
|
||||
driver: local
|
||||
@@ -0,0 +1,73 @@
|
||||
{
|
||||
"slug": "uptimekuma",
|
||||
"kind": "compose",
|
||||
"metadata": {
|
||||
"name": "Uptimekuma",
|
||||
"description": "Self-hosted uptime monitoring tool with support for HTTP(s), TCP, ping, DNS, and more. Provides a clean dashboard and customizable notifications.",
|
||||
"tags": [],
|
||||
"icon": {
|
||||
"provider": "selfhst",
|
||||
"id": "uptime-kuma"
|
||||
},
|
||||
"draft": false,
|
||||
"version": {
|
||||
"name": "2.3.2",
|
||||
"source_dep_name": "docker.io/louislam/uptime-kuma",
|
||||
"source_dep_version": "2.3.2"
|
||||
}
|
||||
},
|
||||
"variables": [
|
||||
{
|
||||
"title": "General",
|
||||
"name": "general",
|
||||
"items": [
|
||||
{
|
||||
"name": "service_name",
|
||||
"type": "str",
|
||||
"title": "Service Name",
|
||||
"required": false,
|
||||
"default": "uptimekuma",
|
||||
"config": {
|
||||
"placeholder": "uptimekuma"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "container_name",
|
||||
"type": "str",
|
||||
"title": "Container Name",
|
||||
"required": false,
|
||||
"default": "uptimekuma",
|
||||
"config": {
|
||||
"placeholder": "uptimekuma"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "restart_policy",
|
||||
"type": "enum",
|
||||
"title": "Restart Policy",
|
||||
"required": false,
|
||||
"default": "unless-stopped",
|
||||
"config": {
|
||||
"options": [
|
||||
"unless-stopped",
|
||||
"always",
|
||||
"on-failure",
|
||||
"no"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "ports_http",
|
||||
"type": "int",
|
||||
"title": "HTTP Port",
|
||||
"required": true,
|
||||
"default": 3001,
|
||||
"description": "Host port used to expose the Uptime Kuma web UI.",
|
||||
"config": {
|
||||
"placeholder": "3001"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user