summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClark Laughlin <clark.laughlin@linaro.org>2015-06-01 14:26:37 -0400
committerClark Laughlin <clark.laughlin@linaro.org>2015-06-01 14:26:37 -0400
commitdc030253333d72235cff18be9fc55eda3534622f (patch)
treeeeeb31b418972324b0d808a1c5a7f355f97d1593
parent0ea0034c193e7854b9156fb738af44b3f61d2095 (diff)
fix a few mistakes, set default paths for production
-rwxr-xr-xdocker-start-containers7
1 files changed, 4 insertions, 3 deletions
diff --git a/docker-start-containers b/docker-start-containers
index ada9f58..7e42936 100755
--- a/docker-start-containers
+++ b/docker-start-containers
@@ -2,8 +2,8 @@
WEBAPP_VIRTUAL_HOST=openstack.linaro.org
STATIC_LOGS_VIRTUAL_HOST=openstack-logs.linaro.org
-DATA_DIR=/srv/ci-reporting/data
-LOGS_DIR=/srv/ci-reporting/logs
+DATA_DIR=/srv/tempest/data
+LOGS_DIR=/srv/tempest/logs
# start the neo4j container
docker run -d --name neo4j \
@@ -11,12 +11,13 @@ docker run -d --name neo4j \
-p 127.0.0.1:7474:7474 \
-p 127.0.0.1:1337:1337 \
--restart=always \
- -v {DATA_DIR}:/var/lib/neo4j/data \
+ -v ${DATA_DIR}:/var/lib/neo4j/data \
clarktlaugh/neo4j-docker-community
# start the reverse proxy
docker run -d --name reverse-proxy \
-p 80:80 \
+ --restart=always \
-v /var/run/docker.sock:/tmp/docker.sock \
jwilder/nginx-proxy