aboutsummaryrefslogtreecommitdiffstats
path: root/docker-compose.yml
blob: ae7c6f46af96aa54b4fdb00c0ce67d0e924bffbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
compile: &defaults
  build: .
  volumes:
    - .:/home/openssl/code:rw
  environment:
    RUBY_VERSION:
    OPENSSL_VERSION:
  command: bundle exec rake compile
test:
  <<: *defaults
  command: bundle exec rake test
shell:
  <<: *defaults
  command: bundle exec irb
debug:
  <<: *defaults
  command: /bin/bash