Skip to content
View in the app

A better way to browse. Learn more.

Unraid

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

[Support] Linuxserver.io - Grocy

Featured Replies

  • Replies 93
  • Views 32.5k
  • Created
  • Last Reply

Top Posters In This Topic

Most Popular Posts

  • There is a config included with our letsencrypt container.

  • Most scanners a computer treats as a keyboard Sent via telekinesis

  • JonathanM
    JonathanM

    The equipment section can host pdf files.   If you want a recipe to cross reference with the stock that you entered, you will need to enter and link those stock items manually. I suppose you

Posted Images

nice have looking for something like that a long time, are it possible too use a barcode scaner with the docker ?

5 hours ago, tola5 said:

nice have looking for something like that a long time, are it possible too use a barcode scaner with the docker ?

Of course, just have to connect a usb barcode scanner to your computer. The fact it's in a docker container doesn't limit that.

This docker is great, I spent some time today setting up my household inventory, forwarded it through LE, went shopping and had the live shopping list on wife and my phones. Freakin' awesome!

 

The documentation for the app is a little sparse, anybody figured out a way to quickly dump the complete inventory dataset to a csv or similar? I'd love to keep a backup in plain text now that I've spent a bunch of time setting it up.

15 hours ago, j0nnymoe said:

Of course, just have to connect a usb barcode scanner to your computer. The fact it's in a docker container doesn't limit that.

thx  just order one are it just  plug and start use in the docker ?

Correct, you just access it from your web browser.

14 hours ago, jonathanm said:

This docker is great, I spent some time today setting up my household inventory, forwarded it through LE, went shopping and had the live shopping list on wife and my phones. Freakin' awesome!

 

The documentation for the app is a little sparse, anybody figured out a way to quickly dump the complete inventory dataset to a csv or similar? I'd love to keep a backup in plain text now that I've spent a bunch of time setting it up.

Glad to here it's working you. I'm planning on digging into this properly myself soon. I guess you could use something like dbeaver to read the dB?

23 hours ago, jonathanm said:

This docker is great, I spent some time today setting up my household inventory, forwarded it through LE, went shopping and had the live shopping list on wife and my phones. Freakin' awesome!

 

The documentation for the app is a little sparse, anybody figured out a way to quickly dump the complete inventory dataset to a csv or similar? I'd love to keep a backup in plain text now that I've spent a bunch of time setting it up.

Care to share the LE config?

4 minutes ago, Gog said:

Care to share the LE config?

Nothing special, I just passed http://unraidip:9283 to grocy.mycustomdomain.com.

No rewrite rules or anything.

Nothing special, I just passed http://unraidip:9283 to grocy.mycustomdomain.com.
No rewrite rules or anything.


Please do, explain more? I keep trying to figure out how to make the CONF files myself, and wondered if possible do to something as easy as you describe.

Need to install and pass this through Letsencrypt myself. What did you name Conf file?
On 2/25/2019 at 9:21 AM, jonathanm said:

The documentation for the app is a little sparse, anybody figured out a way to quickly dump the complete inventory dataset to a csv or similar? I'd love to keep a backup in plain text now that I've spent a bunch of time setting it up.

Should be able to extract via backend using a sql query, or import/export via gui sqlite tools.

1 hour ago, blaine07 said:

 


Please do, explain more? I keep trying to figure out how to make the CONF files myself, and wondered if possible do to something as easy as you describe.

Need to install and pass this through Letsencrypt myself. What did you name Conf file?

There is a config included with our letsencrypt container.

13 hours ago, j0nnymoe said:

There is a config included with our letsencrypt container.

I did an update of the container yesterday and the grocy template is not there.  The samples timestamps look like they are from the last container restart but no groxy.  How can I force that?

Would something like this Scanner work?

14 minutes ago, H2O_King89 said:

Would something like this Scanner work?

We have no idea.  We created a docker container.  None of us are using scanners.

Most scanners a computer treats as a keyboard

Sent via telekinesis

23 hours ago, blaine07 said:

 


Please do, explain more? I keep trying to figure out how to make the CONF files myself, and wondered if possible do to something as easy as you describe.

Need to install and pass this through Letsencrypt myself. What did you name Conf file?

 

here is mine that is working

 

upstream backend {
	server 192.168.1.105:19999;
	keepalive 64;
}

server {
    listen 443 ssl http2;
    server_name grocy.mydomain.com;
  
    ssl_certificate /config/keys/letsencrypt/fullchain.pem;
	ssl_certificate_key /config/keys/letsencrypt/privkey.pem;
	ssl_dhparam /config/nginx/dhparams.pem;
	ssl_ciphers 'MY CIPHER HERE';
	ssl_prefer_server_ciphers on;
	
    client_max_body_size 0;

    location / {
        proxy_pass http://192.168.1.105:9283;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto $scheme;
  }
}

 

here is mine that is working
 
upstream backend {server 192.168.1.105:19999;keepalive 64;}server {   listen 443 ssl http2;   server_name grocy.mydomain.com;   ssl_certificate /config/keys/letsencrypt/fullchain.pem;ssl_certificate_key /config/keys/letsencrypt/privkey.pem;ssl_dhparam /config/nginx/dhparams.pem;ssl_ciphers 'MY CIPHER HERE';ssl_prefer_server_ciphers on;   client_max_body_size 0;   location / {       proxy_pass http://192.168.1.105:9283;       proxy_set_header Host $host;       proxy_set_header X-Real-IP $remote_addr;       proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;       proxy_set_header X-Forwarded-Proto $scheme; }}

 


Thanks!

Does it matter what the CONF is named exactly? Obviously needs to be CONF and changed to IP/PORT of my Unraid box, and domain changed to mine.
On 2/25/2019 at 4:58 PM, j0nnymoe said:

Correct, you just access it from your web browser.

thx 

21 minutes ago, dirknina said:

This app looks promising i check it out.  One thought though would i be able to push this to a rpi or run from one so i can have a gui in kicthen.

kinda like this.  https://www.instructables.com/id/Flush-Wall-Mounted-Raspberry-Pi-Touchscreen/

You use the browser on the rpi to access Grocy. Also it's possible to run it on the rpi. Check the github link in the first post.

Use our forum for support for other platforms than unraid. 

sorry about that i was just curious if it was possiable.  ive downloded the docker on my unraid and have it running just realized i have to input everything first to populate the DB.  if i run into any issues ill be sure to give proper feedback on it  so far very nicely done docker.

ok i seam to run into a problem.  i got a netbook on my lan that i was thinking of using in kitchen however it wont show anything.

i can pull up my sever just fine and load the web UI.  the grocy is not showing what ive already entered thou acting like a clean install.

any ideas on how come?

20190228_171538.jpg

20190228_171524.jpg

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.