Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/ne-sachirou/jlang-docker
- Owner: ne-sachirou
- License: unlicense
- Created: 2017-02-18T20:38:17.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-07-25T09:27:49.000Z (over 2 years ago)
- Last Synced: 2023-03-22T22:37:05.633Z (over 1 year ago)
- Topics: docker, dockerfile, jlang
- Language: Makefile
- Size: 16.6 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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'
```