Skip to content

Commit

Permalink
Add dynamic compose for grocy (#6092)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lancelot-Enguerrand authored Dec 23, 2024
1 parent d386348 commit b033c1b
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 2 deletions.
5 changes: 3 additions & 2 deletions apps/grocy/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
"name": "Grocy",
"available": true,
"exposable": true,
"tipi_version": 5,
"dynamic_config": true,
"tipi_version": 6,
"version": "4.0.3",
"port": 8136,
"id": "grocy",
Expand All @@ -15,5 +16,5 @@
"form_fields": [],
"supported_architectures": ["arm64", "amd64"],
"created_at": 1691943801422,
"updated_at": 1724410930192
"updated_at": 1734908283891
}
21 changes: 21 additions & 0 deletions apps/grocy/docker-compose.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"services": [
{
"name": "grocy",
"image": "lscr.io/linuxserver/grocy:v4.0.3-ls215",
"isMain": true,
"internalPort": 80,
"environment": {
"PUID": "1000",
"PGID": "1000",
"TZ": "${TZ}"
},
"volumes": [
{
"hostPath": "${APP_DATA_DIR}/data",
"containerPath": "/config"
}
]
}
]
}

0 comments on commit b033c1b

Please sign in to comment.