Skip to content

tophfr/docker-op

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

1Password CLI (op) docker image

Here is an unofficial Dockerfile for the 1Password command-line tool.

It is available on docker hub based on Debian and using the last available release from the official 1Password CLI download page.

Changelog

  • 2020-04-01 Upgrading 1Password CLI to 0.9.4
  • 2020-04-01 Upgrading 1Password CLI to 0.9.3
  • 2020-02-29 Upgrading 1Password CLI to 0.9.2
  • 2020-02-29 Upgrading 1Password CLI to 0.9.1
  • 2020-02-29 Upgrading 1Password CLI to 0.9.0
  • 2020-02-29 Upgrading 1Password CLI to 0.8.0
  • 2020-02-29 Upgrading 1Password CLI to 0.7.1
  • 2019-10-30 Upgrading 1Password CLI to 0.7.0
  • 2019-10-22 Upgrading 1Password CLI to 0.6.2
  • 2019-09-19 Initial version: 1Password CLI v0.6.1 on Debian Buster

run with docker run

docker run --rm -it tophfr/op

run with my fake op bin command (really a bash script launching docker run for you)

wget -O $HOME/bin/op https://raw.githubusercontent.com/tophfr/docker-op/master/bin/op
chmod a+x $HOME/bin/op

then just run op like you would with a standard install (without docker)

run with my bash function

Add this line to you .bashrc:

source <(curl -s https://raw.githubusercontent.com/tophfr/docker-op/master/bin/bash.function.sh)

(or copy the script somewhere and source it from your .bashrc)

then just run op like you would with a standard install (without docker) from a new bash session.