Files
APAW/landing/docker-compose.yml
Deploy Bot bb043cb23d feat(landing): add APAW marketing landing page with dark/light theme toggle
- Responsive HTML/CSS landing with full project presentation
- 30+ agent matrix table, pipeline phases, evolution section
- Domain skills showcase with Docker-native approach
- Pricing tiers: Developer 35€/mo, Team 200€/mo
- Dark/light theme toggle with system preference detection
- Theme persisted in localStorage, smooth CSS transitions
- Docker container running on port 3002 via nginx:alpine
- Cross-browser compatible, no horizontal scroll, mobile nav
2026-05-23 22:48:19 +01:00

18 lines
287 B
YAML

version: '3.8'
services:
apaw-landing:
build:
context: ..
dockerfile: landing/Dockerfile
container_name: apaw-landing
ports:
- "3002:80"
restart: unless-stopped
networks:
- apaw-landing-net
networks:
apaw-landing-net:
driver: bridge