add pass(word-store)

This commit is contained in:
chris 2017-03-20 12:38:01 +01:00
parent 0335709590
commit 59a669f11e
2 changed files with 5 additions and 1 deletions

View file

@ -12,6 +12,10 @@ RUN apk add --no-cache \
tree \
vim \
zsh
RUN git clone https://git.zx2c4.com/password-store && \
cd password-store && \
make install && cd .. && \
rm -rf password-store
ENV LANG=en_US.UTF-8 LC_CTYPE=en_US.UTF-8
ADD zshrc /root/.zshrc
CMD zsh

View file

@ -1 +1 @@
docker run --rm -ti -v ${HOME}/.gnupg:/root/.gnupg -v ${HOME}/.ssh:/root/.ssh hnrd/toolbox
docker run --rm -ti -v ${HOME}/.gnupg:/root/.gnupg -v ${HOME}/.ssh:/root/.ssh -v ${HOME}/.password-store:/root/.password-store hnrd/toolbox