-
Notifications
You must be signed in to change notification settings - Fork 1
Migrating to v1.9.0 and beyond
DredBaron edited this page Aug 4, 2026
·
2 revisions
The v1.9.0 update introduces the Trades and Image Uploads features. These features use a new database to store trade history and a folder to store card image uploads. These new filepaths require additional lines in the .env and docker-compose.yml files.
In the .env file, please include entries for UPLOADS_PATH and TRADES_PATH.
UPLOADS_PATH=./uploads
TRADES_PATH=./trades
In the docker-compose.yml file, please include entries under 'volumes' for UPLOADS_PATH and TRADES_PATH.
services:
openmtg:
volumes:
- ${CONFIG_PATH}:/config
- ${UPLOADS_PATH:-./uploads}:/data/uploads
- ${TRADES_PATH:-./trades}:/data/trades
These new filepath entries are included in the .env.example and docker-compose.yml template files, so new users will not need to follow these migration steps.