7ce02d642a
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>
25 lines
565 B
YAML
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}"
|