List of Plugins => PLUGINS.md
This repository manages the plugins that Shifter Headless. Plugins are being added and removed through developer research and community feedback.
We also refer to wordpress.com's Incompatible Plugins criteria.
You can subscribe to the feed below to know ahead of time when the plugin is updated.
- https://github.com/digitalcube/shifter-headless-plugins/commits/develop/PLUGINS.md.atom
- https://github.com/digitalcube/shifter-headless-plugins/commits/main/PLUGINS.md.atom
with docker-compose
version: '3.7'
services:
wp:
volumes:
- plugindata:/path/to/wp-content/plugins
plugins:
image: getshifter/headless-plugins:stable
volumes:
- plugindata:/srv/plugins
volumes:
plugindata:
with multistage-build
FROM getshifter/headless-plugins:stable as plugins
RUN /bin/true
FROM wordpress:latest
... do something ...
COPY --from=plugins /srv/plugins /path/to/wp-content/plugins
If you have any additional plugins or other opinions, please create an Issue with your reasons.