@@ -21,35 +21,34 @@ endef
2121.data.json :
2222 @$(_tree ) -J ${PWD} /data | jq " .[0]" > .data.json
2323
24-
2524.PHONY : docker-compose.yml
2625docker-compose.yml : docker-compose.yml.j2 .venv .data.json .env jupyter_server_config.py
2726 $(call custom-jinja, $< , .data.json, tmp.yml)
2827 @${REPO_BASE_DIR} /scripts/docker-stack-config.bash tmp.yml > $@
2928 @rm tmp.yml
3029
3130.PHONY : up
32- up : .init .env jupyter_server_config.py ${TEMP_COMPOSE} prune-docker-stack-configs # # Deploys jaeger stack
31+ up : .init .env ${TEMP_COMPOSE} prune-docker-stack-configs # # Deploys jaeger stack
3332 @docker stack deploy --with-registry-auth --prune --compose-file ${TEMP_COMPOSE} ${STACK_NAME}
3433
3534.PHONY : up-letsencrypt-http
36- up-letsencrypt-http : .init .env jupyter_server_config.py ${TEMP_COMPOSE}-letsencrypt-http prune-docker-stack-configs # # Deploys jaeger stack using let's encrypt http challenge
35+ up-letsencrypt-http : .init .env ${TEMP_COMPOSE}-letsencrypt-http prune-docker-stack-configs # # Deploys jaeger stack using let's encrypt http challenge
3736 @docker stack deploy --with-registry-auth --prune --compose-file ${TEMP_COMPOSE} -letsencrypt-http ${STACK_NAME}
3837
3938.PHONY : up-letsencrypt-dns
40- up-letsencrypt-dns : .init .env jupyter_server_config.py ${TEMP_COMPOSE}-letsencrypt-dns prune-docker-stack-configs # # Deploys jaeger stack using let's encrypt dns challenge
39+ up-letsencrypt-dns : .init .env ${TEMP_COMPOSE}-letsencrypt-dns prune-docker-stack-configs # # Deploys jaeger stack using let's encrypt dns challenge
4140 @docker stack deploy --with-registry-auth --prune --compose-file ${TEMP_COMPOSE} -letsencrypt-dns ${STACK_NAME}
4241
4342.PHONY : up-dalco # # Deploys jaeger stack for Dalco Cluster
44- up-dalco : .init .env jupyter_server_config.py ${TEMP_COMPOSE}-dalco prune-docker-stack-configs
43+ up-dalco : .init .env ${TEMP_COMPOSE}-dalco prune-docker-stack-configs
4544 @docker stack deploy --with-registry-auth --prune --compose-file ${TEMP_COMPOSE} -dalco ${STACK_NAME}
4645
4746.PHONY : up-aws
48- up-aws : .init .env jupyter_server_config.py ${TEMP_COMPOSE}-aws prune-docker-stack-configs # # Deploys jaeger stack in aws
47+ up-aws : .init .env ${TEMP_COMPOSE}-aws prune-docker-stack-configs # # Deploys jaeger stack in aws
4948 @docker stack deploy --with-registry-auth --prune --compose-file ${TEMP_COMPOSE} -aws ${STACK_NAME}
5049
5150.PHONY : up-master
52- up-master : .init .env jupyter_server_config.py ${TEMP_COMPOSE}-master prune-docker-stack-configs
51+ up-master : .init .env ${TEMP_COMPOSE}-master prune-docker-stack-configs
5352 @docker stack deploy --with-registry-auth --prune --compose-file ${TEMP_COMPOSE} -master ${STACK_NAME}
5453
5554.PHONY : up-local
0 commit comments