mirror of
https://github.com/mwisnowski/mtg_python_deckbuilder.git
synced 2025-12-23 19:10:13 +01:00
SEcond docker test
This commit is contained in:
parent
a1d120f700
commit
d9357a98ba
5 changed files with 308 additions and 1 deletions
17
docker-compose.yml
Normal file
17
docker-compose.yml
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue