Fix md2html docker-compose.json schema format

This commit is contained in:
2026-04-10 19:08:02 +00:00
parent 1c4bfb8cc5
commit 9cd6f56f8c

View File

@@ -1,15 +1,22 @@
{ {
"schemaVersion": 2, "schemaVersion": 2,
"$schema": "https://schemas.runtipi.io/dynamic-compose.json",
"services": [ "services": [
{ {
"name": "md2html", "name": "md2html",
"image": "md2html:latest", "image": "md2html:latest",
"isMain": true, "isMain": true,
"internalPort": 3000, "internalPort": 3000,
"environment": { "environment": [
"PORT": "3000", {
"CHROME_PATH": "/usr/bin/chromium" "key": "PORT",
"value": "3000"
},
{
"key": "CHROME_PATH",
"value": "/usr/bin/chromium"
} }
]
} }
] ]
} }