Skip to main content

Installation

The service can be installed through the Portainer web interface. 

Learn about creating a new stack.

Docker Compose

Use the following code to install the service:

---
services:
  grocy:
    image: linuxserver/grocy:latest
    container_name: grocy
    network_mode: bridge
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=America/Vancouver
    volumes:
      # Persistent Data
      - /srv/grocy:/config
    ports:
      - 8181:80
    restart: unless-stopped