docker test 3

This commit is contained in:
mwisnowski 2025-08-21 09:30:14 -07:00
parent 4872b57c63
commit ae608ed6a3
3 changed files with 256 additions and 6 deletions

View file

@ -7,11 +7,12 @@ services:
stdin_open: true
tty: true
volumes:
# Mount local directories to container for persistence
- ./deck_files:/app/deck_files
- ./logs:/app/logs
- ./csv_files:/app/csv_files
# Mount local directories to container for persistence (Linux paths)
- ${PWD}/deck_files:/app/deck_files
- ${PWD}/logs:/app/logs
- ${PWD}/csv_files:/app/csv_files
environment:
- PYTHONUNBUFFERED=1
# Remove the container when it stops (optional)
# remove: true
- TERM=xterm-256color
# Ensure proper cleanup
restart: "no"