Files
runtipi/apps/cloudbeaver/docker-compose.json
alexz a3005f8538 Add schemaVersion 2 to all docker-compose.json files
🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-18 09:14:52 +00:00

26 lines
550 B
JSON
Executable File

{
"schemaVersion": 2,
"services": [
{
"name": "cloudbeaver",
"image": "dbeaver/cloudbeaver:25.2.5",
"isMain": true,
"internalPort": 8978,
"extraHosts": [
"host.docker.internal:host-gateway"
],
"environment": {
"CB_SERVER_NAME": "CloudBeaver",
"CB_ADMIN_NAME": "admin",
"CB_ADMIN_PASSWORD": "admin"
},
"volumes": [
{
"hostPath": "${APP_DATA_DIR}/data",
"containerPath": "/opt/cloudbeaver/workspace"
}
]
}
]
}