Permalink
Browse files

updated configs and makefile to deploy everware as docker image

  • Loading branch information...
1 parent 49f1f05 commit a51895b41d730d061091744881d3dbb58a55b377 @anaderi anaderi committed with astiunov Apr 4, 2017
Showing with 8 additions and 0 deletions.
  1. +8 −0 Makefile
View
@@ -56,6 +56,14 @@ install: ## install everware
docker-build: ## build docker image docker-build: ## build docker image
docker build --no-cache -t everware/everware:0.10.0 . docker build --no-cache -t everware/everware:0.10.0 .
+clean: ## clean user base
+ if [ -f ${PIDFILE} ] ; then echo "${PIDFILE} exists, cannot continute" ; exit 1; fi
+ rm -f jupyterhub.sqlite
+
+run-linux: clean ## run everware server on linux
+ source ./env.sh && \
+ ${EXECUTOR} -f etc/local_config.py --no-ssl 2>&1 | tee ${LOG}
+
test: ## run all tests test: ## run all tests
export UPLOADDIR=${UPLOADDIR}; \ export UPLOADDIR=${UPLOADDIR}; \
py.test everware/ && \ py.test everware/ && \

0 comments on commit a51895b

Please sign in to comment.