removed reference to an unpublished python package. Corrected a mistyped directory in the dockerhub instructions

This commit is contained in:
mwisnowski 2025-08-21 11:10:31 -07:00
parent 3a1dd52796
commit 712cc38ef6
8 changed files with 70 additions and 339 deletions

27
run-from-dockerhub.bat Normal file
View file

@ -0,0 +1,27 @@
@echo off
echo MTG Python Deckbuilder - Docker Hub Runner
echo ===========================================
REM Create directories if they don't exist
if not exist "deck_files" mkdir deck_files
if not exist "logs" mkdir logs
if not exist "csv_files" mkdir csv_files
echo Starting MTG Python Deckbuilder from Docker Hub...
echo Your files will be saved in the current directory:
echo - deck_files\: Your completed decks
echo - logs\: Application logs
echo - csv_files\: Card database files
echo.
REM Run the Docker container with proper volume mounts
docker run -it --rm ^
-v "%cd%\deck_files:/app/deck_files" ^
-v "%cd%\logs:/app/logs" ^
-v "%cd%\csv_files:/app/csv_files" ^
mwisnowski/mtg-python-deckbuilder:latest
echo.
echo MTG Python Deckbuilder session ended.
echo Your files are saved in: %cd%
pause