- Source Dockerfiles for groonga/rroonga
$ docker run --name rroonga -it groonga/rroonga
irb(main):001:0> require 'groonga'
=> true
irb(main):002:0> Groonga::VERSION
=> [5, 0, 9, nil]
irb(main):003:0> Groonga::Context.default_options = {:encoding => :utf8}
=> {:encoding=>:utf8}
.
.
Let's play the tutorial!
Add your Dockerfile. See ongaeshi/docker-honyomi.
FROM groonga/rroonga:latest
# Add your setting
$ git clone https://github.com/ranguba/docker.git docker-rroonga
$ cd docker-rroonga
$ sudo docker build -t rroonga .
OR
$ sudo docker pull groonga/rroonga
- Patches welcome both test-script and Dockerfile.