TenantAtlas/docker-compose.yml
ahmido be314c577f Spec 400: rebuild Tenantial homepage visuals (#387)
## Summary
- rebuild the public Tenantial homepage around an evidence-first Microsoft tenant governance narrative
- replace the old hero visual with a new static dashboard preview and add dedicated Trust Bar and Feature Pillars sections
- update the shared public shell, navigation, footer, dark design tokens, assets, and homepage content to match the new brand direction
- align website smoke coverage and Spec 400 artifacts with the rebuilt homepage

## Testing
- not run in this pass
- updated website smoke specs under apps/website/tests/smoke

## Note
- `website-dev` was pushed to `origin` so the requested PR base exists remotely
- the remote `website-dev` branch is an ancestor of `origin/dev`, so this PR may also show upstream `dev` history relative to that base

Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de>
Reviewed-on: #387
2026-05-18 14:38:11 +00:00

98 lines
2.5 KiB
YAML

services:
laravel.test:
build:
context: ./apps/platform/vendor/laravel/sail/runtimes/8.4
dockerfile: Dockerfile
args:
WWWGROUP: '${WWWGROUP:-1000}'
NODE_VERSION: '20'
image: tenantatlas-laravel
extra_hosts:
- 'host.docker.internal:host-gateway'
ports:
- '${APP_PORT:-80}:80'
- '${VITE_PORT:-5173}:${VITE_PORT:-5173}'
environment:
WWWUSER: '${WWWUSER:-1000}'
WWWGROUP: '${WWWGROUP:-1000}'
LARAVEL_SAIL: 1
APP_SERVICE: laravel.test
TENANTATLAS_REPO_ROOT: /var/www/repo
entrypoint: ["/bin/sh", "-c", "mkdir -p /var/www/html/node_modules && chown ${WWWUSER:-1000}:${WWWGROUP:-1000} /var/www/html/node_modules || true; exec start-container"]
working_dir: /var/www/html
volumes:
- './apps/platform:/var/www/html'
- '.:/var/www/repo:ro'
- '/var/www/html/node_modules'
networks:
- sail
depends_on:
- pgsql
- redis
queue:
build:
context: ./apps/platform/vendor/laravel/sail/runtimes/8.4
dockerfile: Dockerfile
args:
WWWGROUP: '${WWWGROUP:-1000}'
NODE_VERSION: '20'
image: tenantatlas-laravel
extra_hosts:
- 'host.docker.internal:host-gateway'
environment:
WWWUSER: '${WWWUSER:-1000}'
WWWGROUP: '${WWWGROUP:-1000}'
LARAVEL_SAIL: 1
APP_SERVICE: queue
TENANTATLAS_REPO_ROOT: /var/www/repo
entrypoint:
- /bin/sh
- -c
- mkdir -p /var/www/html/node_modules && chown ${WWWUSER:-1000}:${WWWGROUP:-1000} /var/www/html/node_modules || true; exec start-container "$@"
- --
working_dir: /var/www/html
volumes:
- './apps/platform:/var/www/html'
- '.:/var/www/repo:ro'
- '/var/www/html/node_modules'
networks:
- sail
depends_on:
- laravel.test
- pgsql
- redis
command: php artisan queue:listen --tries=3 --timeout=300 --sleep=3
pgsql:
image: 'postgres:16'
ports:
- '${FORWARD_DB_PORT:-5432}:5432'
environment:
POSTGRES_DB: '${DB_DATABASE:-tenantatlas}'
POSTGRES_USER: '${DB_USERNAME:-root}'
POSTGRES_PASSWORD: '${DB_PASSWORD:-postgres}'
volumes:
- 'sail-pgsql:/var/lib/postgresql/data'
networks:
- sail
redis:
image: 'redis:7-alpine'
ports:
- '${FORWARD_REDIS_PORT:-6379}:6379'
volumes:
- 'sail-redis:/data'
networks:
- sail
volumes:
sail-pgsql:
driver: local
sail-redis:
driver: local
networks:
sail:
driver: bridge