Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/orisano/dire
- Owner: orisano
- License: apache-2.0
- Created: 2019-05-11T22:41:59.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-10-10T14:18:20.000Z (about 4 years ago)
- Last Synced: 2023-05-11T12:05:20.722Z (over 1 year ago)
- Language: Go
- Homepage:
- Size: 25.4 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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