2023-12-04 10:02:23 +00:00
|
|
|
---
|
|
|
|
obj: application
|
|
|
|
android-id: xyz.zedler.patrick.grocy
|
|
|
|
website: https://grocy.info
|
|
|
|
repo: https://github.com/grocy/grocy
|
|
|
|
---
|
2024-09-03 16:13:27 +00:00
|
|
|
|
2023-12-04 10:02:23 +00:00
|
|
|
# Grocy
|
|
|
|
Grocy is a web-based self-hosted groceries & household management solution for your home.
|
|
|
|
|
2024-09-03 16:13:27 +00:00
|
|
|
![Screenshot](./grocy.avif)
|
2023-12-04 10:02:23 +00:00
|
|
|
|
|
|
|
## Features
|
|
|
|
- Keep track of inventory
|
|
|
|
- Recipies
|
|
|
|
- Shopping list based on whats missing
|
|
|
|
|
|
|
|
## [Android](../../systems/Android.md) Application
|
|
|
|
Grocy has a community driven mobile application on [GitHub](https://github.com/patzly/grocy-android)
|
|
|
|
|
2024-09-03 16:13:27 +00:00
|
|
|
![Mobile](./grocy_mobile.avif)
|
2023-12-04 10:02:23 +00:00
|
|
|
|
|
|
|
## Docker Compose
|
|
|
|
```yml
|
|
|
|
version: "3"
|
|
|
|
services:
|
|
|
|
grocy:
|
|
|
|
image: lscr.io/linuxserver/grocy
|
|
|
|
environment:
|
|
|
|
- PUID=1001
|
|
|
|
- PGID=1001
|
|
|
|
- TZ=Europe/Berlin
|
|
|
|
volumes:
|
|
|
|
- ./config:/config
|
|
|
|
ports:
|
|
|
|
- 9283:80
|
|
|
|
restart: unless-stopped
|
|
|
|
```
|