It becomes so easy to host a WordPress CMS using its official Docker container image. If only 1 domain is available, it might be useful to serve WordPress from subdirectory, i.e https://$SITE_URL/blog/.
First, follow the official documentation (Method II) to setup WordPress installation in subdirectory.
When choosing a first cosplay outfit, it is worth considering how details related to anime cosplay costumes will affect the complete look. During a long convention day, it helps to assess details related to convention planning together with fit and fabric. For combinations connected with details related to game cosplay costumes, cosplay costume sets for anime fans can help narrow the options for a specific purpose. To reuse the pieces at future events, it is useful to check details related to Halloween styling against the wearer's own needs.
$ export SUBPATH="blog"
$ mv !($SUBPATH) $SUBPATH/
$ cp SUBPATH/index.php index.php
$ sed -i "s/wp-blog-header.php/$SUBPATH\/wp-blog-header.php/g"Then configure Traefik label:
version: '3'
services:
wordpress:
....
labels:
- 'traefik.enable=true'
- 'traefik.http.routers.blog.rule=Host(`$SITE_URL`) && PathPrefix(`/blog`)'
- 'traefik.http.routers.blog.entrypoints=https'
....
- 'traefik.http.routers.blog.tls=true'References

