SKR03 Docker Image

In the downloadable actual Docker Image is the SKR03 de not complete. Why are the most accounts not available if I make an accountplan with skr03de from the sample.
How can I install the m-ds skr03 module in docker

You must generate a new docker image that uses the base docker image and installs your customer image.

Thanks Sergi,
I’m glad, that I have a running installation on windows 11 with the original docker image.
Is this image not extendable with other modules. I like to install the woocommerce an your sales_point module with the barcodescanner module

The docker image is pretty extensible, as the whole python distribution is included. For testing, you can start a shell in the container and install some modules, but further down the road the better way is to create a custom image, e.g.

FROM tryton/tryton:7.4-office

# Install from file
USER root
ADD modules/some_custom_module /root/some_custom_module
WORKDIR /root/some_custom_module
RUN python3 setup.py install

# Install from pypi
pip3 install trytond_some_module

WORKDIR /var/lib/trytond
USER trytond

The installation steps depend on the specific module, of course.