Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/orisano/dire

A viewer of dockerignore regexp.
https://github.com/orisano/dire

Last synced: 24 days ago
JSON representation

A viewer of dockerignore regexp.

Awesome Lists containing this project

README

        

# dire
A viewer of dockerignore regexp.

## Installation
```
go get -u github.com/orisano/dire
```

## How to use
```
$ cat .dockerignore
foo
foo/*
bar/**
bar/**/
foobar/**/.git
foobar/a/?
```
```
$ dire
^foo$
^foo/[^/]*$
^bar/.*$
^bar/.*$
^foobar/(.*/)?\.git$
^foobar/a/[^/]$
```

## Author
Nao Yonashiro (@orisano)

## License
Apache 2.0