https://github.com/orisano/dire
A viewer of dockerignore regexp.
https://github.com/orisano/dire
Last synced: about 1 year 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 (about 7 years ago)
- Default Branch: master
- Last Pushed: 2020-10-10T14:18:20.000Z (almost 6 years ago)
- Last Synced: 2025-06-13T16:14:21.886Z (about 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