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

https://github.com/mrsuh/docker-bison


https://github.com/mrsuh/docker-bison

bison docker docker-image php-bison-skeleton

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

          

# Docker Bison

Bison is a general-purpose GLR/LALR parser generator
[https://www.gnu.org/software/bison](https://www.gnu.org/software/bison)

This is the Git repo of the [Docker image for Bison](https://hub.docker.com/repository/docker/mrsuh/bison).

## How to use image

### Get Bison version
```bash
docker run -it --rm mrsuh/bison bison --version
```

### Generate parser from `parser.y` file
```bash
docker run -it --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp mrsuh/bison bison -o parser.java parser.y
```