Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/ne-sachirou/jlang-docker

Run Linux version of J programming language
https://github.com/ne-sachirou/jlang-docker

docker dockerfile jlang

Last synced: 4 days ago
JSON representation

Run Linux version of J programming language

Awesome Lists containing this project

README

        

![test](https://github.com/ne-sachirou/jlang-docker/workflows/test/badge.svg)
[![Docker Pulls](https://img.shields.io/docker/pulls/nesachirou/jlang.svg)](https://hub.docker.com/r/nesachirou/jlang/)

# jlang-docker

Run Linux version of [J programming language](http://www.jsoftware.com/)

```sh
make build
make run
```

You can pass J file to ARGS.

```sh
make ARGS='sample.ijs' run
```

Pre-built image is available.

```sh
docker pull nesachirou/jlang
docker run -it -v $(pwd):/data --rm nesachirou/jlang
docker run -it -v $(pwd):/data --rm nesachirou/jlang sample.ijs
```

In my `.zshrc` :

```sh
alias j='docker run -it -v "$(pwd):/mnt" --rm nesachirou/jlang'
```