mirror of
https://github.com/mwisnowski/mtg_python_deckbuilder.git
synced 2025-09-22 04:50:46 +02:00
18 lines
447 B
YAML
18 lines
447 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 (Linux paths)
|
|
- ${PWD}/deck_files:/app/deck_files
|
|
- ${PWD}/logs:/app/logs
|
|
- ${PWD}/csv_files:/app/csv_files
|
|
environment:
|
|
- PYTHONUNBUFFERED=1
|
|
- TERM=xterm-256color
|
|
# Ensure proper cleanup
|
|
restart: "no"
|