docs init
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2025-11-02 01:38:06 +05:30
commit d9ca5f797c
71 changed files with 17911 additions and 0 deletions

25
Dockerfile Normal file
View File

@@ -0,0 +1,25 @@
# Stage 1: Base Nginx static server
FROM nginx:1.27-alpine
# Metadata
LABEL maintainer="Aetoskia <dev@aetoskia.com>"
LABEL description="Static documentation host for Aetoskia projects"
# Copy custom Nginx configuration
COPY nginx.conf /etc/nginx/conf.d/default.conf
# Copy all project docs
# Expected folder layout (on build context):
# ./_index/
# ./mongo-ops/site/
COPY ./_index /usr/share/nginx/html/
COPY ./mongo-ops/site /usr/share/nginx/html/mongo-ops/
# Expose HTTP port
EXPOSE 80
# Healthcheck
HEALTHCHECK --interval=30s --timeout=5s CMD wget -qO- http://localhost/ || exit 1
# Start Nginx
CMD ["nginx", "-g", "daemon off;"]