diff --git a/.github/workflows/build-using-cnb-buildpack.yml b/.github/workflows/build-using-cnb-buildpack.yml index 06a01fc..2ccd195 100644 --- a/.github/workflows/build-using-cnb-buildpack.yml +++ b/.github/workflows/build-using-cnb-buildpack.yml @@ -81,7 +81,7 @@ jobs: cat vcap-services-template.sh|envsubst >vcap-service.env cat vcap-service.env echo "Starting sample app" - container_id=$(docker run -d --link redis-service -e PORT=8080 --env-file vcap-service.env --name "cnb-app-container" ${{env.CNB_IMAGE_NAME}}) + container_id=$(docker run -d --link redis -e PORT=8080 --env-file vcap-service.env --name "cnb-app-container" ${{env.CNB_IMAGE_NAME}}) echo "Cnb app started (id: $container_id)" docker inspect -f '{{.HostConfig.LogConfig.Type}}' $container_id # docker run -e PORT=80 --env-file vcap-service.env -p 8080:80 --name "cnb-app-container" ${{env.CNB_IMAGE_NAME}}