https://github.com/digitalcube/shifter-headless-plugins
All plugins for Shifter Headless
https://github.com/digitalcube/shifter-headless-plugins
wordpress wordpress-plugins
Last synced: 9 days ago
JSON representation
All plugins for Shifter Headless
- Host: GitHub
- URL: https://github.com/digitalcube/shifter-headless-plugins
- Owner: digitalcube
- Created: 2020-03-19T07:37:16.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2024-07-24T00:19:03.000Z (over 1 year ago)
- Last Synced: 2024-07-24T02:41:11.575Z (over 1 year ago)
- Topics: wordpress, wordpress-plugins
- Language: Ruby
- Homepage: https://www.getshifter.io
- Size: 491 KB
- Stars: 5
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Headless Service Plugins for getshifter
- https://www.getshifter.io
List of Plugins => [PLUGINS.md](./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](https://wordpress.com/support/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
[](https://hub.docker.com/r/getshifter/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](https://github.com/getshifter/headless-plugins/issues) with your reasons.