Get Airship CLI Tools

The Airship command line tools ("Airship Launcher") provide developers a way to login and sync files between your local development environment and the Airship server. Airship Launcher also includes a local development server. These Airship CLI tools are available for OSX, Linux, and Windows development environments. You may use Docker to run all Airship Launcher CLI commands. Otherwise, you must install the native Airship Launcher . Non-developer admins and content creators do not need to install the CLI tools.

Choose your platform below to either run Airship Launcher in Docker, or install the Airship Launcher CLI tools on your operating-system.

Docker

Recommended: Use the Airship CLI with Docker (OSX, Linux, Windows)

AirshipCMS provides an easy way for developers using Docker to work on their airship site.

Navigate to your project directory (create if it doesn't exist).

Run the official Airship Launcher docker image to access all airship commands.

OSX / Linux / WSL

Use this command in your airship project directory when using OSX, Linux, or Windows Subsystem Linux.

docker run --rm -it \
  -v $PWD:/srv \
  -v ~/.airship-sessions:/home/.airship-sessions \
  -p 9800-9828:9800-9828 \
  -p 9001:9001 \
  airshipcms/launcher
Copied!

Windows / PowerShell

Use this command in Windows PowerShell.

docker run --rm -it `
  -v "$($PWD):/srv" `
  -v "$($PWD)\.airship-sessions:/home/.airship-sessions" `
  -p 9800-9828:9800-9828 `
  -p 9001:9001 `
  airshipcms/launcher
Copied!

Windows / CMD

Use this command in the Windows Command Shell cmd.exe.

docker run --rm -it ^
  -v %cd%:/srv ^
  -v %cd%/.airship-sessions:/home/.airship-sessions ^
  -p 9800-9828:9800-9828 ^
  -p 9001:9001 ^
  airshipcms/launcher
Copied!

Airship Docker Documentation

Read the full details on running Airship Launcher with Docker.

DockerHub page: https://hub.docker.com/r/airshipcms/launcher.


Linux

Quick Install on Linux

Easily install the command line tools by entering this into your terminal:

/bin/sh -c "$(curl -fsS https://install.airshipcms.io)"

Mac

Quick Install on Mac

Easily install the command line tools by entering this into your terminal:

/bin/sh -c "$(curl -fsS https://install.airshipcms.io)"

Windows

Visit the Windows Installer page to download the latest version of Airship Launcher.