Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,13 @@ A small number of security tests are implemented. All are done with anonymous cr
## Advanced

Within the *ofxpostern.py* script the *cache* global variable can be enabled to store text copies of all OFX protocol responses to `$HOME/.ofxpostern/`.

## Docker
```bash
# Get this project
git clone git@github.com:sdann/ofxpostern.git
cd ofxpostern
# run with docker
docker build --tag ofxpostern
docker run ofxpostern -o Cavion -f 11135 https://ofx.lanxtra.com/ofx/servlet/Teller
```
8 changes: 8 additions & 0 deletions dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM python

WORKDIR /usr/src/app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .

ENTRYPOINT ["python", "ofxpostern.py"]