Appearance
DEPRECATED
This Lando Plugin is now DEPRECATED and is no longer getting updates.
We recommend you check out the Lando Service.
Compose
This service is a "catch all" that allows power users to specify custom services that are not currently one of Lando's supported services. You can easily add it to your Lando app by adding an entry to the services top-level config in your Landofile.
Technically speaking, this service is just a way for a user to define a service directly using the Docker Compose V3 file format.
THIS MEANS THAT IT IS UP TO THE USER TO DEFINE A SERVICE CORRECTLY.
This service is useful if you are:
- Thinking about contributing your own custom Lando service and just want to prototype something
- Using Docker Compose config from other projects
- Need a service not currently provided by Lando itself
Custom Installation
This plugin is included with Lando by default. That means if you have Lando version 3.0.8
or higher then this plugin is already installed!
However if you would like to manually install the plugin, update it to the bleeding edge or install a particular version then use the below. Note that this installation method requires Lando 3.5.0+
.
::: code-group-item LANDO 3.21+
bash
lando plugin-add @lando/compose
::: ::: code-group-item HYPERDRIVE
bash
# @TODO
# @NOTE: This doesn't actaully work yet
hyperdrive install @lando/compose
::: ::: code-group-item DOCKER
bash
# Ensure you have a global plugins directory
mkdir -p ~/.lando/plugins
# Install plugin
# NOTE: Modify the "npm install @lando/compose" line to install a particular version eg
# npm install @lando/compose@0.5.2
docker run --rm -it -v ${HOME}/.lando/plugins:/plugins -w /tmp node:18-alpine sh -c \
"npm init -y \
&& npm install @lando/compose --production --flat --no-default-rc --no-lockfile --link-duplicates \
&& npm install --production --cwd /tmp/node_modules/@lando/compose \
&& mkdir -p /plugins/@lando \
&& mv --force /tmp/node_modules/@lando/compose /plugins/@lando/compose"
# Rebuild the plugin cache
lando --clear
:::
You should be able to verify the plugin is installed by running lando config --path plugins
and checking for @lando/compose
. This command will also show you where the plugin is being loaded from.