[Support] Linuxserver.io - Grocy


Recommended Posts

linuxserver_medium.thumb.png.70d9e5df49bd12e3845319278c1d29f7.png

 

Application Name: Grocy

Application Site: https://grocy.info/

Docker Hub: https://hub.docker.com/r/linuxserver/grocy/

Github: https://github.com/linuxserver/docker-grocy

 

Please post any questions/issues relating to this docker you have in this thread.

 

If you are not using Unraid (and you should be!) then please do not post here, instead head to linuxserver.io to see how to get support.

Link to comment

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.

Link to comment
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?

Link to comment
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?

Link to comment
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?
Link to comment
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.

Link to comment
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.

  • Like 1
Link to comment
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?

Link to comment
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;
  }
}

 

Link to comment
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.
Link to comment
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. 

Link to comment

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

Link to comment

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...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.