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

https://github.com/gtramontina/docker-flow-bin

An image for https://github.com/flowtype/flow-bin
https://github.com/gtramontina/docker-flow-bin

docker docker-image flow-bin git node

Last synced: 2 months ago
JSON representation

An image for https://github.com/flowtype/flow-bin

Awesome Lists containing this project

README

        


Docker Tags
Docker Latest Tag
Travis


Docker image for flow-bin

---

#### _Running:_

```sh
$ docker run --rm gtramontina/flow-bin:
```

**Note 1**: You'll need to mount your project in the container (`-v`). The example below mounts the current directory as `/app` in the container and sets it as the working directory (`-w`).

```sh
$ docker run --rm \
-w /app \
-v $(pwd):/app \
gtramontina/flow-bin:
```

---

#### _Developing:_

```sh
$ make build # Builds a new image
$ make test # Runs/tests the image
$ make push # Pushes the image up
$ make clean # Removes any generated artifacts
$ make clobber # Removes artifacts and generated images
```

---

🐳