Back with another question: When I run `docker/sd...
# docker
a
Back with another question: When I run
docker/sdk up
it seems like it is executing some sections from the install script (config/install/docker.yml) but not executing other sections .. any ideas where is that defined? or if it is defined at all 😅 Thanks
p
Hi, what exactly do you mean? Where it is defined which install-script to use?
a
Hi Fabian I have an installation recipe defined in
config/install/docker.dev.yml
But when I run
docker/sdk up -x
it seems like not all the sections in the recipe are executed So I am wondering if I should do something to make it execute all the script .. or if I should define it some where in the config
thanks for helping
p
what deploy-file did you boostraped?
a
deploy.dev.yaml
but it is a modified version of course
p
so in your deploy-file you specified
pipeline: <http://docker.dev|docker.dev>
?
a
oh no. I dont have it
where should I define it?
p
Just as example: https://github.com/spryker-shop/b2b-demo-shop/blob/master/deploy.ci.functional.yml#L7 -> this one would look for the
config/install/docker.ci.functional.yml
a
in the same repo deploy.dev.yml is not defining a pipeline
I copied mine from deply dev
p
yes, then i think it is using docker.yml as default
a
I see
thanks I will look at this
p
i debugged it for myself some time ago but i dont remember where i found the information. i think i traced the install-folder + pipeline string
a
even after specifiying the pipeline proerty it is still taking only some sections and executing them
not executing every section
p
i think this file is executed for installing // calling the scripts: src/Spryker/Zed/Install/Business/Runner/InstallRunner.php
from there you have to dig deeper alone 🤞
a
thank you for helping Florian
it is this line
docker/bin/sdk/data/demo.sh:58
that is responsible for running specific sections not all Now the qeustion is if we can configure it differently without changing the sdk !