28 lines
587 B
Plaintext
28 lines
587 B
Plaintext
default: &default
|
|
connection_timeout: 3
|
|
pool:
|
|
active: false
|
|
ports: !ruby/range 4500..4600
|
|
|
|
development:
|
|
<<: *default
|
|
host: tcp://192.168.59.104:2376
|
|
workspace_root: <%= File.join('/', 'shared', Rails.env) %>
|
|
|
|
production:
|
|
<<: *default
|
|
host: unix:///var/run/docker.sock
|
|
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.59.104:2376
|
|
workspace_root: <%= File.join('/', 'shared', Rails.env) %>
|