Skip to content

Instantly share code, notes, and snippets.

@vkemeter
Created October 13, 2024 11:09
Show Gist options
  • Save vkemeter/f1cfc256ea50fb95203aac2235949f52 to your computer and use it in GitHub Desktop.
Save vkemeter/f1cfc256ea50fb95203aac2235949f52 to your computer and use it in GitHub Desktop.
ddev w3c validator
services:
vnu:
container_name: ddev-${DDEV_SITENAME}-vnc
platform: linux/amd64
image: ghcr.io/validator/validator:latest
restart: unless-stopped
networks:
default: null
labels:
com.ddev.site-name: ${DDEV_SITENAME}
com.ddev.approot: ${DDEV_APPROOT}
w3c:
container_name: ddev-${DDEV_SITENAME}-w3c
build: validator-w3c/
image: ghcr.io/netresearch/validator-w3c
networks:
default: null
labels:
com.ddev.site-name: ${DDEV_SITENAME}
com.ddev.approot: ${DDEV_APPROOT}
expose:
- "80"
restart: unless-stopped
environment:
VIRTUAL_HOST: ${DDEV_HOSTNAME}
HTTP_EXPOSE: "8060:80"
HTTPS_EXPOSE: "8061:80"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment