Description
I am trying to pass local plugins to Etherpad-Lite using the ETHERPAD_LOCAL_PLUGINS argument in the docker-compose.yml file, but the plugins are not being installed correctly during the Docker build process.
To Reproduce
Steps to reproduce the behavior:
I am using Etherpad-Lite 2.2.4
At the same home location, i have my customPlugins folder.
Not changed anything much related to plugin installation in the Dockefile
Expected behavior
The local plugins from ../customPlugins/ep_headings3 and ../customPlugins/ep_align should be installed during the build process via pnpm or should be loaded during docker-compose run time.
Server (please complete the following information):
Etherpad version: 2.2.2
OS: Ubuntu 22
Node.js version (22):
npm version (10.8):
pnpm version (9.9.0)
Is the server free of plugins: yes
Unfortunately Docker does not allow to map a directory at build time. Please try to use COPY ../customPlugins/ep_headings3 ../customPlugins/ep_align in your Dockerfile
Description I am trying to pass local plugins to Etherpad-Lite using the
ETHERPAD_LOCAL_PLUGINS
argument in thedocker-compose.yml
file, but the plugins are not being installed correctly during the Docker build process.To Reproduce Steps to reproduce the behavior:
docker-compose.yml
file:Expected behavior The local plugins from ../customPlugins/ep_headings3 and ../customPlugins/ep_align should be installed during the build process via pnpm or should be loaded during docker-compose run time.
Server (please complete the following information): Etherpad version: 2.2.2 OS: Ubuntu 22 Node.js version (22): npm version (10.8): pnpm version (9.9.0) Is the server free of plugins: yes