eilandert/docker-cms is a hardened, batteries-included CMS bundle: the
deb.myguard.nl Angie web server and PHP 8.5 in a single image, ready to run
WordPress and other PHP CMSes. Built on top of the angie image from this stack,
it inherits HTTP/3 + QUIC, ModSecurity3 + OWASP CRS, the dedicated openssl-nginx
build and the audited dynamic-module set — so a CMS comes up production-hardened
out of the box rather than as bare upstream defaults.
docker-compose.ymlservices:
cms:
image: eilandert/docker-cms:latest
restart: unless-stopped
read_only: true
cap_drop: [ALL]
cap_add:
- NET_BIND_SERVICE
security_opt:
- no-new-privileges:true
tmpfs:
- /run
volumes:
- ./site:/var/www/html # your CMS code + uploads
- certs:/etc/letsencrypt:ro
ports:
- "443:443"
- "80:80"
- "443:443/udp" # HTTP/3
depends_on: [db]
db:
image: eilandert/mariadb:latest
read_only: true
cap_drop: [ALL]
security_opt: [no-new-privileges:true]
volumes:
- db:/var/lib/mysql
environment:
- MARIADB_RANDOM_ROOT_PASSWORD=1
volumes:
certs:
db:
Content type
Image
Digest
sha256:ffaf180e6…
Size
465.3 MB
Last updated
about 8 hours ago
docker pull eilandert/angie-cms