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

View file

@ -50,7 +50,11 @@ This is the first stable release of the MTG Python Deckbuilder - a comprehensive
mkdir mtg-decks && cd mtg-decks
# Run directly from Docker Hub
docker run -it --rm -v "$(pwd)":/app/host mwisnowski/mtg-python-deckbuilder:latest
docker run -it --rm \
-v "$(pwd)/deck_files":/app/deck_files \
-v "$(pwd)/logs":/app/logs \
-v "$(pwd)/csv_files":/app/csv_files \
mwisnowski/mtg-python-deckbuilder:latest
```
### Option 2: Docker from Source (Recommended for Development)