diff options
author | Daniel Weipert <git@mail.dweipert.de> | 2025-08-06 15:21:03 +0200 |
---|---|---|
committer | Daniel Weipert <git@mail.dweipert.de> | 2025-08-06 15:21:03 +0200 |
commit | 929c1b90d6b16706f9c63339f5f2a2b42332f3f3 (patch) | |
tree | b2057dc317f6e4476d828f103046c3ab7e834c45 /Justfile | |
parent | d6adc45f0e0380d7f5404549e3774a02b2afaebe (diff) |
split into two standalone containers
Diffstat (limited to 'Justfile')
-rw-r--r-- | Justfile | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -1,3 +1,6 @@ -generate deck: - DECKLIST="{{deck}}" docker compose run cli - docker compose down +build: + docker build --no-cache -t mtg-print print + docker build --no-cache -t mtg-print-web web + +get_printings: + curl -L https://mtgjson.com/api/v5/AllPrintings.sqlite -o print/AllPrintings.sqlite |