mirror of
https://github.com/mwisnowski/mtg_python_deckbuilder.git
synced 2026-01-10 19:48:51 +01:00
17 lines
415 B
YAML
17 lines
415 B
YAML
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
|