Require time library before formatting ISO timestamps (#149)

* Require time library for ISO timestamp formatting

* Default to host networking in Compose
This commit is contained in:
l5y
2025-09-22 09:21:04 +02:00
committed by GitHub
parent ab2e9b06e1
commit 62de1480f7
7 changed files with 138 additions and 85 deletions
+21 -8
View File
@@ -1,21 +1,34 @@
version: '3.8'
# Development overrides for docker-compose.yml
services:
web:
environment:
- DEBUG=1
DEBUG: 1
volumes:
- ./web:/app
- ./data:/data # Mount data directory for SQL files
- /app/vendor/bundle # Exclude vendor directory from volume mount
- ./data:/data
- /app/vendor/bundle
web-bridge:
environment:
DEBUG: 1
volumes:
- ./web:/app
- ./data:/data
- /app/vendor/bundle
ports:
- "41447:41447"
- "9292:9292" # Additional port for development tools
- "9292:9292"
ingestor:
environment:
- DEBUG=1
DEBUG: 1
volumes:
- ./data:/app
- /app/.local # Exclude Python packages from volume mount
- /app/.local
ingestor-bridge:
environment:
DEBUG: 1
volumes:
- ./data:/app
- /app/.local