You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
333 B

# keepass2 in Docker
Running keepass2 in Docker
## Launching keepass2
### with Docker Compose
You can use the following shortcut function and place it to your `~/.bash_aliases` file
```
function docker_helper() { (cd ~/docker/$1; docker-compose run --rm "$@" & disown) }
function keepass2() { (docker_helper $FUNCNAME $@) }
```