Skip to content

Commit

Permalink
Add dynamic compose for grav (#6054)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lancelot-Enguerrand authored Dec 21, 2024
1 parent e45c533 commit d231b54
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 2 deletions.
5 changes: 3 additions & 2 deletions apps/grav/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@
"port": 8161,
"available": true,
"exposable": true,
"dynamic_config": true,
"id": "grav",
"tipi_version": 5,
"tipi_version": 6,
"version": "1.7.48",
"categories": ["social", "media"],
"description": "Grav is a Fast, Simple, and Flexible, file-based Web-platform. There is Zero installation required. It follows similar principles to other flat-file CMS platforms, but has a different design philosophy than most. Grav comes with a powerful Package Management System to allow for simple installation and upgrading of plugins and themes, as well as simple updating of Grav itself.",
Expand All @@ -15,5 +16,5 @@
"form_fields": [],
"supported_architectures": ["arm64", "amd64"],
"created_at": 1691943801422,
"updated_at": 1730917272000
"updated_at": 1734113855467
}
21 changes: 21 additions & 0 deletions apps/grav/docker-compose.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"services": [
{
"name": "grav",
"image": "lscr.io/linuxserver/grav:1.7.48",
"isMain": true,
"internalPort": 80,
"environment": {
"PUID": "1000",
"PGID": "1000",
"TZ": "${TZ}"
},
"volumes": [
{
"hostPath": "${APP_DATA_DIR}/data/grav-comfig",
"containerPath": "/config"
}
]
}
]
}

0 comments on commit d231b54

Please sign in to comment.