https://github.com/goby-lang/docker-goby
https://github.com/goby-lang/docker-goby
docker-image goby goby-language
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/goby-lang/docker-goby
- Owner: goby-lang
- Created: 2017-06-16T12:16:18.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-06-16T12:57:04.000Z (almost 8 years ago)
- Last Synced: 2024-02-25T00:33:18.351Z (over 1 year ago)
- Topics: docker-image, goby, goby-language
- Size: 1000 Bytes
- Stars: 3
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# docker-goby
## Usage
### Pull Image
```
$ docker pull st0012/goby:latest
```### Execute File
```
# In container, default working directory is /go/src/github.com/goby-lang/goby
$ docker run -t -v PATH_TO_TARGET_FILE_DIR:/go/src/github.com/goby-lang/goby st0012/goby:latest goby TARGET_FILE
```For example if I want to run `./samples/loop.gb`, I will run
```
$ docker run -t -v `pwd`/samples:/go/src/github.com/goby-lang/goby st0012/goby:latest goby loop.gb
```