knowledge/technology/applications/web/Grocy.md
2024-09-03 18:13:27 +02:00

799 B

obj android-id website repo
application xyz.zedler.patrick.grocy https://grocy.info https://github.com/grocy/grocy

Grocy

Grocy is a web-based self-hosted groceries & household management solution for your home.

Screenshot

Features

  • Keep track of inventory
  • Recipies
  • Shopping list based on whats missing

Android Application

Grocy has a community driven mobile application on GitHub

Mobile

Docker Compose

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