mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 19:32:30 +01:00
f9b1205a5f
* Update usage section to allow command line arguments CMD was changed to ENTRYPOINT, the USAGE section didn't reflect this change * Update usage to reflect a recent usage bug fix Aligned usage description to include a recently found bugfix. Added & adjusted other possible command line options.
32 lines
879 B
Docker
32 lines
879 B
Docker
# DESCRIPTION: Create keepass2 container with its dependencies
|
|
# AUTHOR: Christian Koep <christian.koep@fom-net.de>
|
|
# USAGE:
|
|
# # Build keepass2 image
|
|
# docker build -t keepass2 .
|
|
#
|
|
# # Run the container and mount your keepass2 database file
|
|
# docker run -it \
|
|
# -v /home/$USER/DB.kdbx:/root/DB.kdbx \
|
|
# -v /tmp/.X11-unix:/tmp/.X11-unix \
|
|
# -e DISPLAY=$DISPLAY \
|
|
# keepass2 "$@"
|
|
#
|
|
# ISSUES:
|
|
# # 'Gtk: cannot open display: :0'
|
|
# Try to set 'DISPLAY=your_host_ip:0' or run 'xhost +' on your host.
|
|
# (see: https://stackoverflow.com/questions/28392949/running-chromium-inside-docker-gtk-cannot-open-display-0)
|
|
#
|
|
|
|
FROM debian:sid
|
|
MAINTAINER Christian Koep <christian.koep@fom-net.de>
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
keepass2 \
|
|
xdotool \
|
|
--no-install-recommends \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
ENTRYPOINT ["/usr/bin/keepass2"]
|