Fix env_file path: .env is in project root, not infra/

This commit is contained in:
Claude 2026-03-20 13:06:29 +00:00
parent d7d8df759a
commit b9171d2504
No known key found for this signature in database

View file

@ -29,7 +29,7 @@ services:
# Mount the builder script so edits take effect without rebuilding. # Mount the builder script so edits take effect without rebuilding.
- ../builder:/app/builder:ro - ../builder:/app/builder:ro
env_file: env_file:
- path: .env - path: ../.env
required: false required: false
environment: environment:
HIY_DATA_DIR: /data HIY_DATA_DIR: /data
@ -56,7 +56,7 @@ services:
- "443:443" - "443:443"
- "2019:2019" # admin API - "2019:2019" # admin API
env_file: env_file:
- path: .env - path: ../.env
required: false required: false
volumes: volumes:
- ../proxy/Caddyfile:/etc/caddy/Caddyfile:ro - ../proxy/Caddyfile:/etc/caddy/Caddyfile:ro