Docker Image for CLI
Description
The Atlassian CLI client distribution is now available as a Docker image!
Links
Overview
Atlassian CLI is an integrated family of CLI’s for various Atlassian applications providing a consistent and reliable automation platform for advanced users, administrators, script writers, and DevOps developers. This provides a convenient way to quickly do tasks, implement business processes, or general automation with your Atlassian products. The CLIs are built on remote APIs provided by the Atlassian applications and deliver a higher level, client based API that is easier to use than the underlying product APIs. See Atlassian CLI for more details.
The Atlassian CLI docker image provides a convenient way to quickly install the client distribution and start using the CLI immediately!
Quick Start
To quickly get started running an Atlassian CLI docker instance, use the following command:
$ docker run -ti bobswiftapps/acli:latest /bin/bash bash-4.4# acli -a getClientInfo Client name: cli, Client version: 9.7.0, Client build: 2021-04-02T12:45:38, Java: OpenJDK 64-Bit Server VM 11.0.9.1, OS: Mac OS X 10.15.7
Alternately, you can run a CLI action directly:
$ docker run -ti bobswiftapps/acli:latest acli -a getClientInfo Client name: cli, Client version: 9.7.0, Client build: 2021-04-02T12:45:38, Java: OpenJDK 64-Bit Server VM 11.0.9.1, OS: Mac OS X 10.15.7
... more