Files
codeocean/config/docker.yml.erb
2015-02-20 14:59:51 +01:00

27 lines
549 B
Plaintext

default: &default
connection_timeout: 3
pool:
active: false
ports: !ruby/range 4500..4600
development:
<<: *default
host: tcp://192.168.23.75:2375
workspace_root: <%= File.join('/', 'shared', Rails.env) %>
production:
<<: *default
pool:
active: true
refill:
async: false
batch_size: 32
interval: 30
timeout: 60
workspace_root: <%= Rails.root.join('tmp', 'files', Rails.env) %>
test:
<<: *default
host: tcp://192.168.23.75:2375
workspace_root: <%= File.join('/', 'shared', Rails.env) %>