-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: rename docker-plugins to docker-cli-plugins (#10)
Signed-off-by: Kaan Yagci <[email protected]>
- Loading branch information
Showing
14 changed files
with
46 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
# Wharf | ||
|
||
A templating system engine for Docker | ||
A templating system for Dockerfiles. | ||
|
||
- [Docker plugins](./docker-plugins/README.md) | ||
- [CLI](./cli/README.md) | ||
- [Go dependency](./core/README.md) | ||
## How to use it? | ||
|
||
Wharf can be used in several ways, you can choose how you want to use it | ||
|
||
- [Docker CLI Plugins](./docker-cli-plugins/README.md) | ||
- [Go dependency](./core/README.md) | ||
<!-- - [CLI](./cli/README.md) --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
## Using Wharf as Docker CLI Plugin | ||
|
||
Docker CLI plugins is used to extend the cappabilities of the Docker CLI. Wharf provide a small list of Docker CLI plugins. You can use them as `docker <plugin>` | ||
|
||
## Install | ||
To install all plugins, you can use the following command from [the project's root.](../) | ||
|
||
```bash | ||
make install-plugins | ||
``` | ||
|
||
## List of avaialble plugins: | ||
- [render](./render/README.md): Create a Dockerfile from a template |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module github.com/Makepad-fr/wharf/docker-cli-plugins/commons | ||
|
||
go 1.22.2 |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
module github.com/Makepad-fr/wharf/docker-cli-plugins/render | ||
|
||
go 1.22.2 | ||
|
||
replace github.com/Makepad-fr/wharf/core => ../../core | ||
|
||
replace github.com/Makepad-fr/wharf/docker-cli-plugins/commons => ../commons | ||
|
||
require ( | ||
github.com/Makepad-fr/wharf/core v0.0.0-00010101000000-000000000000 | ||
github.com/Makepad-fr/wharf/docker-cli-plugins/commons v0.0.0-00010101000000-000000000000 | ||
) | ||
|
||
require gopkg.in/yaml.v3 v3.0.1 // indirect |
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters