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
{{ message }}
This repository was archived by the owner on Nov 10, 2019. It is now read-only.
The plugin makes using [Makisu build tool](https://github.com/uber/makisu) easier in a Codefresh pipeline.
4
+
5
+
### Requirements
6
+
7
+
The plugin requires access to the docker daemon enabled, so one have to request it from Codefresh administrators, unless the user uses a Hybrid solution (running builds on his own infrastructure.
8
+
9
+
### Basic usage
10
+
11
+
This example covers the most common case - to build and push an image using Makisu distributed cache and flexible layer generation features.
12
+
13
+
```
14
+
makisuBuildStep:
15
+
image: codefresh/cfstep-makisu
16
+
environment:
17
+
- REGISTRY_HOSTNAME=docker.io
18
+
- R_USER=my_username
19
+
- R_PASSWORD=my_password
20
+
- IMAGE_NAME_TAG=image/name:tag
21
+
```
22
+
23
+
By default the makisu context is the main clone directory, but it can be changed with the WORKING_DIRECTORY environment variable. The dockerfile path can also be specified by the DOCKERFILE variable
24
+
25
+
### Advanced usage
26
+
27
+
If a user needs more flexibility, it is not a problem to add custom flags to the makisu buildcommand:
0 commit comments