Files
intotheeast-com/docker-compose.yml
T
m038 7ce02d642a feat: scaffold travel-memories Flask app and test infrastructure
Adds services/travel-memories/ with Flask factory (create_app), stub
route blueprints, pytest/playwright smoke test infra (httpserver session
fix, pytest.ini pythonpath), phase2–6 fixture JSONs, Dockerfile, and
docker-compose service entry. Smoke test (test_health) passes.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-21 15:46:32 +02:00

25 lines
565 B
YAML

services:
grav:
build: .
container_name: intotheeast_grav
environment:
- GRAV_CHANNEL=beta
- APACHE_RUN_USER=#1000
- APACHE_RUN_GROUP=#1000
ports:
- "8081:80"
volumes:
- ./user:/var/www/html/user
- ./php/php-local.ini:/usr/local/etc/php/conf.d/php-local.ini
restart: unless-stopped
travel-memories:
build: ./services/travel-memories
ports:
- "8082:8082"
volumes:
- ./docs/immich-workflow:/app/state
- ./user/pages:/app/pages
env_file: .env
user: "${UID}:${GID}"