You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Starts a Microcks instance using Docker or Podman and configures it as the current CLI context.
Usage
microcks start [flags]
Example
# Start a Microcks instance
microcks start
# Define your port (by default 8585)
microcks start --port [Port you want]
# Define your driver (by default docker)
microcks start --driver [driver you wnat either 'docker' or 'podman']
# Define name of your microcks container/instance
microcks start --name [name of you container/instance]
# Auto remove the container on exit
microcks start --rm
Options
Flag
Description
-h, --help
help for start
--name
Name for the Microcks instance (default: microcks)
--port
Host port to expose Microcks (default: 8585)
--image
Container image to use (default: quay.io/microcks/microcks-uber:latest-native)
--rm
Auto-remove the container when it exits (like Docker --rm)
--driver
Container driver to use (docker or podman, default: docker)