https://github.com/bigbite/jetty-wordpress-image
https://github.com/bigbite/jetty-wordpress-image
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/bigbite/jetty-wordpress-image
- Owner: bigbite
- License: mit
- Created: 2022-07-11T10:08:48.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-16T11:40:15.000Z (about 3 years ago)
- Last Synced: 2025-06-03T15:22:38.784Z (8 months ago)
- Language: Shell
- Size: 15.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Jetty WordPress Image
> This image is based off the official Docker image maintained by the Docker community: https://hub.docker.com/_/wordpress
## Adding New Image Versions
The `versions.yml` contains the config for the image versions supported. When adding new versions, please check the tags supported by the WordPress image: https://hub.docker.com/_/wordpress/tags.
Example `versions.yml`:
```yml
6.0: [8.1, 8,0]
```
This will generate the `config.json` for the CircleCI `bigbite/docker-image-extend` orb, containing WordPress 6.0, with PHP versions 8.1 and 8.0:
Example generated `conifg.json`:
```json
[
{ "tag": "6.0-php8.1", "args": { "WORDPRESS_IMAGE": "6.0-php8.1" } },
{ "tag": "6.0-php8.0", "args": { "WORDPRESS_IMAGE": "6.0-php8.0" } },
]
```
To generate the `config.json` file, run:
```
./generate-config.sh versions.yml > config.json
```