21cc7911c1
Here I commit all the required files for a development cartodb container to be successfully build and run with Docker.
19 lines
265 B
Bash
Executable File
19 lines
265 B
Bash
Executable File
#!/bin/bash
|
|
|
|
PORT=3000
|
|
|
|
service postgresql start
|
|
service redis-server start
|
|
service varnish start
|
|
|
|
cd /Windshaft-cartodb
|
|
node app.js development &
|
|
|
|
cd /CartoDB-SQL-API
|
|
node app.js development &
|
|
|
|
cd /cartodb
|
|
bundle exec script/resque &
|
|
bundle exec rails s -p $PORT
|
|
|