Skip to content
forked from yegle/fava-docker

A Dockerfile for beancount-fava

License

Notifications You must be signed in to change notification settings

fdw/fava-docker

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 

Repository files navigation

fava-docker

A Dockerfile for beancount-fava, the web UI for beancount. Also contains fava-portfolio-returns.

Usage

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 Cli

docker run -d \
    --name=fava \
    -v $PWD:/bean \
    -e BEANCOUNT_FILE=/bean/example.bean \
    -p 5000:5000 \
    --restart unless-stopped \
    ghcr.io/fdw/fava-docker

Docker Compose

---
version: "3.0"
services:
  fava:
    container_name: fava
    image: ghcr.io/fdw/fava-docker
    ports:
      - 5000:5000
    environment:
      - BEANCOUNT_FILE=/bean/example.beancount
    volumes:
      - ${PWD}/:/bean
    restart: unless-stopped

Environment Variable

Parameter Value
BEANCOUNT_FILE path to your beancount file. Default to empty string.

History

This is a fork of yegle/fava-docker with updates and only the plugins I need.

About

A Dockerfile for beancount-fava

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages

  • Dockerfile 100.0%