Ajout de Invidious companion
Some checks failed
Test / test (push) Has been cancelled
Renovate / renovate (push) Has been cancelled

This commit is contained in:
2025-08-08 11:56:05 -04:00
parent 8184113f63
commit bf6ae9f2f4
2 changed files with 38 additions and 18 deletions

View File

@@ -1,10 +1,29 @@
{
"services": [
{
"name": "whoami",
"image": "quay.io/invidious/invidious-companion:latest",
"name": "invidious-companion",
"image": "ivorg/invidious-companion:latest",
"isMain": true,
"internalPort": "3000"
"internalPort": 3000,
"ports": [
{
"host": "APP_PORT",
"container": 3000
}
],
"volumes": [
{
"host": "./config.json",
"container": "/app/config.json",
"type": "ro"
}
],
"environment": [
{
"name": "INVIDIOUS_INSTANCE",
"value": "{{ INVIDIOUS_INSTANCE }}"
}
]
}
]
}
}