Docker

Run the Maestro CLI inside a container or extend it with your own

Introduction

General docker images are available containing the Semaphore CLI configured as entrypoint. Please check out the CLI documentation for more information.

docker pull jxapp/semaphore
pageCLI

You could build your own docker image containing your flows and schema definitions. Simply pull the jxapp/semaphore image and copy your definitions.

FROM jxapp/semaphore

# include local flow definitions
COPY . .

Last updated