ERP beyond your fridge - now containerized! This is the docker repo of grocy.
Follow these instructions to get Docker running on your server.
> docker-compose pull # if you haven't pulled or built
> docker-compose up
And grocy should be accessible via http(s)://localhost/
. The https option will work. However, since the certificate is self-signed, most browsers will complain.
Note: if you have not pulled any of the images from the repository, when you do an up
, it will attempt to build from scratch!
docker pull grocy/grocy-docker:nginx
docker pull grocy/grocy-docker:grocy
Or just docker-compose pull
.
As of grocy v.1.24.1, ENV variables are accessible via the docker-compose.yml
file as long as they are prefixed by GROCY_
. For example, to change the language from english to french, you can modify
GROCY_CULTURE: en
to
GROCY_CULTURE: fr
docker-compose build
The docker images build are based on Alpine, with an extremelly low footprint (less than 10 MB for nginx, and less than 70MB for grocy with php-fm. That number is eventually bumped up to 490MB after all the dependencies are downloaded, however).
The MIT License (MIT)