Fix incompatible beancount version
This commit is contained in:
parent
010c09f751
commit
9bce4a9834
2 changed files with 4 additions and 1 deletions
|
@ -21,4 +21,4 @@ EXPOSE 8080
|
||||||
VOLUME ${BEANCOUNT_IMPORT_DATA_DIR}
|
VOLUME ${BEANCOUNT_IMPORT_DATA_DIR}
|
||||||
VOLUME ${BEANCOUNT_IMPORT_JOURNAL_DIR}
|
VOLUME ${BEANCOUNT_IMPORT_JOURNAL_DIR}
|
||||||
|
|
||||||
CMD python3 /beancount-import/run.py --address 0.0.0.0 --port 8080 ${BEANCOUNT_IMPORT_ARGS}
|
CMD [ "python3", "/beancount-import/run.py", "--address", "0.0.0.0", "--port", "8080", "${BEANCOUNT_IMPORT_ARGS}" ]
|
||||||
|
|
|
@ -1,2 +1,5 @@
|
||||||
|
# beancount-import doesn't specify this constraint itself, but is also
|
||||||
|
# not compatible with v3. So we need to ensure this here.
|
||||||
|
beancount<3.0.0
|
||||||
beancount-import==1.4.0
|
beancount-import==1.4.0
|
||||||
smart_importer==0.5
|
smart_importer==0.5
|
||||||
|
|
Loading…
Add table
Reference in a new issue