Skip to content

mollonado/docker-bfg

This branch is 26 commits behind koenrh/docker-bfg:master.

Repository files navigation

BFG Repo-Cleaner

BFG dockerized.

Usage

You could run BFG in a container by executing the following docker command.

docker run -it --rm \
  --volume "$PWD:/home/bfg/workspace" \
  koenrh/bfg \
  --delete-files id_rsa

You could make this command more easily accessible by putting it in an executable, and make sure that it is available in your $PATH. Alternatively, you could create wrapper functions for your docker run commands (example).

bfg() {
  docker run -it --rm \
    --volume "$PWD:/home/bfg/workspace" \
    --name bfg \
    koenrh/bfg "$@"
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dockerfile 95.0%
  • Shell 5.0%