From 581cff1a6ff69542eb964a2a3ba14d0954a70887 Mon Sep 17 00:00:00 2001 From: Joe Fiorini Date: Mon, 11 May 2015 12:56:47 -0400 Subject: [PATCH] Add helpful startup script for docker container Not actually adding this to the container yet. Want to make sure @matburt is okay with that first. --- tools/docker/start_everything.sh | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 tools/docker/start_everything.sh diff --git a/tools/docker/start_everything.sh b/tools/docker/start_everything.sh new file mode 100755 index 0000000000..97b76efc42 --- /dev/null +++ b/tools/docker/start_everything.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +/etc/init.d/postgresql start +/etc/init.d/redis-server start +#nohup mongod --smallfiles & + +(cd /tower_devel && make server && +/bin/bash)