A Dockerfile for beancount-fava
You can get started creating a container from this image, you can either use docker-compose or the docker cli.
Assuming you have example.bean
in the current directory:
docker run -d \
--name=fava \
-v $PWD:/bean \
-e BEANCOUNT_FILE=/bean/example.bean \
-p 5000:5000 \
--restart unless-stopped \
ghcr.io/duquewu/fava:latest
---
version: "3.0"
services:
fava:
container_name: fava
image: ghcr.io/duquewu/fava:latest
ports:
- 5000:5000
environment:
- BEANCOUNT_FILE=/bean/example.beancount
volumes:
- ${PWD}/:/bean
restart: unless-stopped
Parameter | Value |
---|---|
BEANCOUNT_FILE |
path to your beancount file. Default to empty string. |