add: wordpress stack

This commit is contained in:
2025-12-29 17:27:05 -03:00
parent 8f22c03dac
commit c41d942244
11 changed files with 345 additions and 0 deletions

10
docker/nginx/Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
ARG NGINX_VERSION=stable
FROM nginx:${NGINX_VERSION}-alpine
RUN rm -rf /etc/nginx/conf.d/default.conf
COPY --chmod=755 /scripts/docker-entrypoint.d/* /docker-entrypoint.d
COPY templates /etc/nginx/templates
EXPOSE 80