gethumanai-landing/docker-compose.yml
Oskar Kapala fc5741316f feat: initial humanAI landing page
- Astro 6 static site, PL default (/) + EN (/en/)
- All copy in src/i18n/pl.json and src/i18n/en.json
- Sections: Hero, Problem, HowWeWork, Offers, Process, Contact, Footer
- Security section hidden behind SHOW_SECURITY flag
- Conservative tone for Industry and Med (human-in-the-loop)
- Contact form via mailto prefill
- Dockerfile multi-stage (node build -> nginx)
- docker-compose.yml on npm_proxy network (NPM visible)
- deploy.sh for SATURN -> VPS workflow
2026-06-02 17:24:37 +02:00

14 lines
321 B
YAML

services:
humanai-landing:
build: .
container_name: humanai-landing
restart: unless-stopped
networks:
- npm_proxy
# Port is NOT exposed to host — traffic goes through Nginx Proxy Manager only.
# In NPM, proxy host → http://humanai-landing:80
networks:
npm_proxy:
external: true