Skip to content

digitalcube/shifter-headless-plugins

Repository files navigation

Headless Service Plugins for getshifter

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.

headless-plugins

Usage example

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

Contributing

If you have any additional plugins or other opinions, please create an Issue with your reasons.