YAML examples for Docker CLI
Docker CLI with AWS integration
yaml- action: "Docker CLI" type: "DOCKER" region: "us-east-1" execute_commands: - "docker --version" - "docker build -t my-image ." setup_commands: - "apt-get update -y" - "apt-get install -y wget" shell: "BASH" integration: "my_integration"
Simple Docker commands
yaml- action: "Run docker commands" type: "DOCKER" execute_commands: - "docker ps" integration: "docker_integration"