This repository serves as a base for the laugmanuel/bludit
Docker image: https://github.com/laugmanuel/bludit-docker
The image uses a sane nginx config from h5bp and some modified settings based on Bludit Nginx config.
It provides a automated weekly build to keep up with the upstream alpine image!
FROM: alpine:stable
- Nginx
- PHP7 + FPM
The image uses the nginx
user with id 555
.
docker run -p 8080:8080 \
-v $(pwd)/bl-plugins:/usr/share/nginx/html/bl-plugins \
-v $(pwd)/bl-themes:/usr/share/nginx/html/bl-themes \
-v $(pwd)/bl-content:/usr/share/nginx/html/bl-content \
-it laugmanuel/bludit:latest
# or to skip theme installation
docker run -p 8080:8080 \
-v $(pwd)/bl-plugins:/usr/share/nginx/html/bl-plugins \
-v $(pwd)/bl-themes:/usr/share/nginx/html/bl-themes \
-v $(pwd)/bl-content:/usr/share/nginx/html/bl-content \
-e SKIP_THEMES_INSTALL=true \
-it laugmanuel/bludit:latest
Skips the installation of build-in bludit themes if set to true
.
Note: You need to keep the themes up-to-date yourself! Furture bludit releases might not work with old themes!
Skips the installation of build-in bludit plugins if set to true
.
Note: You need to keep the plugins up-to-date yourself! Furture bludit releases might break with old plugins!