- 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
18 lines
287 B
YAML
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
|