🚀
Semaphore
  • Introduction
  • Getting started
    • Go API
    • CLI
    • Docker
    • Examples
  • Cookbook
    • Flows
      • References
      • Error handling
      • Conditional logic
      • Proxy forward
    • Schemas
      • Protobuffers
    • Transport
      • HTTP
      • Go micro
      • GraphQL
    • DevOps
  • Contributing
Powered by GitBook
On this page
  1. Getting started

Docker

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

PreviousCLINextExamples

Last updated 4 years ago

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

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 . .
CLI