hammerkit
  • About
  • Installation
  • Getting started
  • Build file
    • Environment Variables
    • References
    • Includes
  • Task
    • Dependencies
    • Needs
    • Caching
    • Container
    • Watching
    • Extending
  • Service
    • Container
    • Kubernetes
  • Labels
  • CLI
    • Init
    • ls
    • Execute
    • Store / Restore
    • Clean
    • Validate
    • Help
  • External Links
    • Docker Hub
    • Homebrew Repository
  • Release Blog
    • Release 1.4.0
    • Release 1.5.0
  • Contribution
    • Roadmap
    • Publishing
Powered by GitBook
On this page

Was this helpful?

  1. CLI

ls

Inspect configured tasks that are available to you

Print information about tasks and services.

Services:
• postgres
   ports: 127.0.0.1:5432 -> 5432
   image: postgres:12

Tasks:
• install
   image: node:16.6.0-alpine
   labels: stage=build
   src: package.json package-lock.json
   generates: node_modules
• api
   needs: postgres
   deps: install
   image: node:16.6.0-alpine
   labels: stage=run app=example
   src: index.js config.json package.json package-lock.json
   generates: node_modules
PreviousInitNextExecute

Last updated 2 years ago

Was this helpful?