Sign inSign up

kensonman/kpcli

By kensonman

Updated over 3 years ago

The simple image that provide the kpcli (0.4.1) command. It is base on the python:3.9-alpine image.

Image
0

191

kensonman/kpcli repository overview

kensonman/kpcli

The simple image that provide the kpcli executable command. This is based on python:3.9-alpine.

For more details, refer to project source for more details.

Dockerfile

FROM python:3.9-alpine

MAINTAINER Kenson Man <[email protected]>

ENV KPCLI_VERSION 0.4.1

RUN echo "> Installing the dependencies..." && \
    apk update && \
    apk add --update --no-cache bash && \
    pip install kpcli==${KPCLI_VERSION} && \
    echo "> Cleaning and Finishing..." && \
    rm -rf /var/cache/apk/*
        
CMD ["kpcli"]

Usage

#Listing the specified database:
$ docker run -v /path/to/kdbx/file:/opt/database.kdbx:ro -e KEEPASSDB=/opt/database.kdbx --rm -it kensonman/kpcli:latest kpcli ls

Tag summary

Content type

Image

Digest

sha256:d30f1dd9b

Size

61.3 MB

Last updated

over 3 years ago

docker pull kensonman/kpcli