Files
runtipi-appstore/apps/invidious-companion/docker-compose.json
hugo bf6ae9f2f4
Some checks failed
Test / test (push) Has been cancelled
Renovate / renovate (push) Has been cancelled
Ajout de Invidious companion
2025-08-08 11:56:05 -04:00

29 lines
563 B
JSON

{
"services": [
{
"name": "invidious-companion",
"image": "ivorg/invidious-companion:latest",
"isMain": true,
"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 }}"
}
]
}
]
}