Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 468 Bytes

Image.md

File metadata and controls

30 lines (22 loc) · 468 Bytes

Image

GitLab Input

# String configuration
image: ruby:latest

# Multiple parameter configuration
image:
  name: postgres
  entrypoint: ["docker-entrypoint.sh", "-b"]

Transformed Github Action

# String output
container:
  image: ruby:latest

# Multiple parameter output
container:
  image: postgres
  options: "--entrypoint docker-entrypoint.sh"

Unsupported Options

  • entrypoint (Unable to convert entrypoints with arguments)