:web container :web do image fetch(:image, 'elct9620/example') port 3000 env 'DATABASE_URL', 'postgres://...' end end end service :web do select :app, :web node_port port 80, 3000 end
:app, :ruby template do label :app, :ruby container :web do # ... config_file 'application.yaml', path: '/usr/src/app/config', from: :config end volume :config do config :configs, 'application.yaml' => 'application.yaml' end end end