Skip to content

ranguba/docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 

Repository files navigation

Dockerfile for Rroonga

Try test

$ 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!

Create Dockerfile of the Rroonga Application

Add your Dockerfile. See ongaeshi/docker-honyomi.

FROM groonga/rroonga:latest

# Add your setting

Build image (if necessary)

$ git clone https://github.com/ranguba/docker.git docker-rroonga
$ cd docker-rroonga
$ sudo docker build -t rroonga .

OR

$ sudo docker pull groonga/rroonga

Contribution

  • Patches welcome both test-script and Dockerfile.