Home

Awesome

AppUp

The command that can save you typing 15 characters or more, each time!

CircleCI

This plugins adds start, restart, stop, up and down commands when it detects a docker-compose or Vagrant file in the current directory (e.g. your application). Just run up and get coding! This saves you typing docker-compose or vagrant every time or aliasing them. Also gives you one set of commands that work for both environments.

Docker

Aside from simply running up, you can also extend your configuration by running up <name>, which will run docker-compose with both docker-compose.yml and extend it with docker-compose.<name>.yml. For more on extending please see the official docker documentation. Additional arguments will be directly supplied to the docker-compose.

Vagrant

Vagrant doesn't have a down, restart, start or stop commands natively but don't worry, that's been taken care of and running those commands will actually run vagrant's equivalent commands. Additional arguments will be directly supplied to vagrant.

Command mapping

CommandVagrant commandDocker command
upupup
downdestroydown
startupstart
restartreloadrestart
stophaltstop
enterexec /bin/bash -l (or custom command/shell, e.g. with enter /bin/sh)

Installation

oh-my-zsh

  1. Clone this repository in $ZSH_CUSTOM/plugins/appup:

    git clone https://github.com/Cloudstek/zsh-plugin-appup.git "$ZSH_CUSTOM/plugins/appup"
    
  2. Edit ~/.zshrc and add appup to the list of plugins

Plain ZSH

  1. Clone this repository somewhere

  2. Edit your ~/.zshrc and add this line near the bottom of the file:

    source path/to/the/repository/appup.plugin.zsh
    

Updating

  1. Go to the directory where you cloned the plugin repository
  2. Run git pull origin master

Configuration options

AppUp has a few configuration options to customise its behaviour. Please make sure you define these in ~/.zshrc before you load any plugins.

Currently these options only affect docker.

NameValuesDefaultDescription
APPUP_CHECK_STARTEDtrue/falsetrueEnable/disable checking if docker is running completely.
APPUP_DOCKER_MACHINEtrue/falsetrueIf both docker (e.g. Docker Desktop) and docker-machine are installed, check if docker-machine (when true) or docker (when false) is running.
APPUP_LOAD_ENVStrue/falsetrueWhen true, load .env, .env.local, .env.docker and .env.docker.local if they exist with docker compose --env-file.