This is an automated email from the ASF dual-hosted git repository.
rabbah pushed a commit to branch master
in repository
https://gitbox.apache.org/repos/asf/incubator-openwhisk-devtools.git
The following commit(s) were added to refs/heads/master by this push:
new 4591811 Redirect controller logs to correct location (#263)
4591811 is described below
commit 45918110276d9c8f7d0089e45f5dfcbb4f1a291c
Author: Alvaro Lopez Garcia <[email protected]>
AuthorDate: Sun Jul 7 14:26:48 2019 +0000
Redirect controller logs to correct location (#263)
In the docker-compose file we are redirecting files to the wrong
location, therefore they are not available outside the Docker container.
---
docker-compose/docker-compose.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docker-compose/docker-compose.yml
b/docker-compose/docker-compose.yml
index 7f0f55b..121dda1 100644
--- a/docker-compose/docker-compose.yml
+++ b/docker-compose/docker-compose.yml
@@ -40,7 +40,7 @@ services:
# WHISK CONTROLLER
controller:
image: ${DOCKER_IMAGE_PREFIX:-openwhisk}/controller
- command: /bin/sh -c "exec /init.sh 0 >>
/home/owuser/controller-local_logs.log 2>&1"
+ command: /bin/sh -c "exec /init.sh 0 >> /logs/controller-local_logs.log
2>&1"
links:
- db:db.docker
- kafka:kafka.docker