SEcond docker test

This commit is contained in:
mwisnowski 2025-08-21 09:19:20 -07:00
parent a1d120f700
commit d9357a98ba
5 changed files with 308 additions and 1 deletions

17
docker-compose.yml Normal file
View file

@ -0,0 +1,17 @@
version: '3.8'
services:
mtg-deckbuilder:
build: .
container_name: mtg-deckbuilder
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
environment:
- PYTHONUNBUFFERED=1
# Remove the container when it stops (optional)
# remove: true