This guide is for developers and newcomers to help them debug and explore Docker.
This page describes how to test and debug your changes once you have set up the project, Product Opener with Docker using dev environment quick start guide.
make logYou will get logs from nginx, mongodb, postgres, etc.
Most logs from perl are not (yet ?) displayed on the docker logs, but are instead available in specific directories.
To see them use:
make tailIt will tail -f all the files present in the logs/ directory:
apache2/error.logapache2/log4perl.logapache2/modperl_error.logapache2/other_vhosts_access.lognginx/access.lognginx/error.log
You can also simply run:
tail -f <FILEPATH>to check a specific log.
One of the most important is log4perl.log.
By default, the log4perl configuration conf/log.conf matches production
settings. You can tweak that file with your own dev configuration settings and
run make restart to reload the changes.
A setting useful for local environments is to set TRACE log level:
log4perl.rootLogger=TRACE, LOGFILERun the following to open a bash shell within the backend container:
docker compose exec backend bashYou should see root@<CONTAINER_ID>:/# (opened root shell): you are now within the Docker container and can begin typing some commands!
Navigate to the specific directory and run
ls -lrtIt will list all directories and their permissions.
Navigate to your specific directory using cd and run
mkdir directory-nameMinion is a high-performance job queue for Perl, used in openfoodfacts-server for time-consuming import and export tasks. These tasks are processed and queued using the minion jobs queue. Therefore, they are called minion jobs.
Go to /opt/product-opener/scripts and run
./minion_producers.pl minion jobThe above command will show the status of minion jobs. Run the following command to launch the minion jobs.
./minion_producers.pl minion worker -m production -q pro.openfoodfacts.orgSometimes restarting the whole backend container is overkill, and you can just
restart Apache from inside the container:
apache2ctl -k restartUse exit to exit the container.
In the dev environment, any code change to the local directory will be written
to the container. That said, some code changes require a restart of the backend
container, or rebuilding the NPM assets.
make up is a good command for starters,
but it's not the right one to use if you develop on a daily basis, because it may be slow,
as it does a full rebuild, which, in dev mode, should only be necessary in a few cases.
On a daily basis you could better run those:
docker compose upto start and monitor the stack.docker compose restart backendto account for a code change in a.pmfile (cgiplfiles do not need a restart)docker compose stopto stop them all
If some important file changed (like Dockerfile or cpanfile, etc.), or if in doubt,
you can run docker compose build (or maybe it's a good time to use make up once)
You should explore the docker compose commands. Most are useful!
To automate the live reload on code changes, you can install the Python package when-changed:
pip3 install when-changed
when-changed -r docker/ docker-compose.yml .env -c "make restart" # restart backend container on compose changes
when-changed -r lib/ -r docker/ docker-compose.yml -c "docker compose backend restart" # restart Apache on code changes
when-changed -r html/ Dockerfile Dockerfile.frontend package.json -c "make up" # rebuild containers on asset or Dockerfile changes
An alternative to when-changed is inotifywait.
docker compose exec mongodb mongoThe above command will open a MongoDB shell, allowing you to use all the mongo
commands to interact with the database:
show dbs
use off
db.products.count()
db.products.find({_id: "5053990155354"})
db.products.deleteOne({_id: "5053990155354"})See the mongo shell docs for more commands.
If you need some value to be configurable, it is best to set it as an environment variable.
To add a new environment variable TEST:
- In a
.envfile, addTEST=test_val[local]. - In
.github/workflows/container-deploy.yml, addecho "TEST=${{ secrets.TEST }}" >> .envto the "Set environment variables" build step [remote]. Also add the corresponding GitHub secretTEST=test_val. - In
docker-compose.ymlfile, add it under thebackend>environmentsection. - In
conf/apache-2.4/modperl.conffile, addPerlPassEnv TEST. - In
lib/Config2.pm, add$test = $ENV{TEST};. Also add$testto theEXPORT_OKlist at the top of the file to avoid a compilation error.
The call stack goes like this:
stateDiagram-v2
make_up: make up
docker_compose: docker compose
env_file:.env
docker_compose_service_definition: docker compose service definition
make_up --> docker_compose:launch
docker_compose --> env_file:loads
env_file --> docker_compose_service_definition:pass variables
docker_compose_service_definition --> docker_container:define env variables to pass
docker_container --> mod_perl:pass env variables
mod_perl --> Config2pm:initialize variables from env
Important: Note that when you change environment variables, a restart of docker containers is not sufficient. You must destroy and re-create the container.
The best way to do it, most of the time, is docker compose down && docker compose up -d
(you can also destroy individual container with docker compose rm -sf <service_name> && docker compose ud -d <service_name>)
To juggle between multiple local deployments (e.g: to run different flavors of Open Food Facts on the same host), there are different possible strategies.
docker compose takes its settings from, in decreasing priority:
- the environment
- the
.envfile
So one strategy to have a different instance,
can be to keep the same .env file, but override some env variables to tweak the configuration.
This is a good strategy for the pro platform.
For this case we have a
setenv.sh
script.
To use it, open a terminal, where you want to be in pro environment and simply use:
. setenv.sh off-prothen you can use whatever docker compose command.
Note: This terminal will remain in pro mode until you end its session.
See also Developing on the producers platform
This strategy might be the right one if your settings differ a lot.
You will need:
-
Multiple
.envfiles (one per deployment), such as:.env.off: configuration for Open Food Facts dev env..env.off-pro: configuration for Open Food Facts Producer's Platform dev env..env.obf: configuration for Open Beauty Facts dev env..env.opff: configuration for Open Pet Food Facts dev env.
-
COMPOSE_PROJECT_NAME,COMPOSE_PROFILES,PRODUCT_OPENER_DOMAIN,PRODUCT_OPENER_PORT,PRODUCT_OPENER_FLAVORandPRODUCT_OPENER_FLAVOR_SHORTset to different values in each.envfile, so that container names across deployments are unique and frontend containers don't port-conflict with each other. See example below.
To switch between configurations, set ENV_FILE before running make commands,
(or docker compose command):
ENV_FILE=.env.off-pro make up # starts the OFF Producer's Platform containers.
ENV_FILE=.env.obf make up # starts the OBF containers.
ENV_FILE=.env.opff make up # starts the OPFF containers.or export it to keep it for a while:
export ENV_FILE=.env.off # going to work on OFF for a while
make up
make restart
make down
make logA good strategy is to have multiple terminals open, one for each deployment:
-
off[Terminal 1]:export ENV_FILE=.env.off make up -
off-pro[Terminal 2]:export ENV_FILE=.env.off-pro make up -
obf[Terminal 3]:export ENV_FILE=.env.obf make up -
opff[Terminal 3]:export ENV_FILE=.env.opff make up
Note: the above case of 4 deployments is a bit ambitious, since ProductOpener's backend container takes about ~6GB of RAM to run, meaning that the above 4 deployments would require a total of 24GB of RAM available.
Example: if you already have Open Food Facts up and running and you would like to have Open Beauty Facts as well. Then, copy .env to .env.obf and modify the following variables:
COMPOSE_PROJECT_NAME=po_off
COMPOSE_PROFILES=off
PRODUCT_OPENER_DOMAIN=openfoodfacts.localhost
PRODUCT_OPENER_PORT=80
PRODUCT_OPENER_FLAVOR=openfoodfacts
PRODUCT_OPENER_FLAVOR_SHORT=offto
COMPOSE_PROJECT_NAME=po_obf
COMPOSE_PROFILES=obf
PRODUCT_OPENER_DOMAIN=openbeautyfacts.localhost
PRODUCT_OPENER_PORT=81
PRODUCT_OPENER_FLAVOR=openbeautyfacts
PRODUCT_OPENER_FLAVOR_SHORT=obfRun:
export ENV_FILE=.env.obf
make devIf you have error like Errors in the labels taxonomy definition at /opt/product-opener/lib/ProductOpener/Tags.pm line 1622., due to conflict between taxonomies, a small hack is to comment the lines (it appears 2 times in the file) raising error in the Tags.pm file.