Files
example-appstore/apps/openaudible/docker-compose.json

23 lines
423 B
JSON
Raw Normal View History

2025-11-27 18:45:44 -06:00
{
2025-11-27 18:53:21 -06:00
"schemaVersion":2,
2025-11-27 18:45:44 -06:00
"services": [
{
"name": "openaudible",
"image": "openaudible/openaudible:latest",
2025-11-27 19:47:38 -06:00
"addPorts": [
{"containerPort":3000,
"hostPort":"$APP_PORT",
"tcp":true,
"udp":false}
],
2025-11-27 19:57:06 -06:00
"environment": [],
2025-11-27 18:45:44 -06:00
"volumes": [
{
"hostPath": "${ROOTPATH}",
"containerPath": "/root/OpenAudible"
}
]
}
2025-11-27 18:53:21 -06:00
]
2025-11-27 18:45:44 -06:00
}