#Hi folks I am very Dagger curious and

1 messages · Page 1 of 1 (latest)

violet birch
#

Regarding Pipelines, I know it's a platform limitation that the engine cannot be run in privileged mode, but I wonder if a Dagger process running in Bitbucket Pipelines could connect to another container runtime hosted elsewhere to execute its jobs? Or perhaps it would make more sense to just integrate Bitbucket with a different CI tool that supports Dagger if I really wanted to use it.

#

My guess is that for Windows jobs, dagger has no plans to support "docker on windows", but could it instead be a good idea to use a dagger setup to orchestrate CI jobs running on non-linux containers in other environments?

remote sandal
violet birch
#

Bitbucket is similar to the options provided by GitHub/GitLab. The primary option is managed/“black box”, which I see in this discussion has issues with supporting Dagger. I hadn’t considered that using a self-hosted runner could circumvent those limitations.

GitHub

We started writing a new doc page - From local dev to CI environment #1678 - and would like to know which CI/CD platform you would find most useful for us to document next. Since everyone that is u...

remote sandal
# violet birch Bitbucket is similar to the options provided by GitHub/GitLab. The primary optio...

Yes, this is a pretty typical pattern. Even for CI platforms where Dagger can run on the black box managed service, there's always some limitation that can be solved by running the Dagger Engine and the CI runner side by side on the same VMs or kubernetes cluster.

Generally speaking, if you want to use Dagger in your production CI, regardless of CI platform, we recommend going for the "self-hosted runner" approach.

violet birch
#

Awesome, that's great to know. Am I correct that the way to point a dagger program at one particular runtime or another for running the dagger engine is just by making sure the local docker client is configured via env vars to communicate with that runtime?

remote sandal
#

The default behavior of auto-installing the engine with docker is a convenience, that typically you would not use in production

violet birch
#

Would you be able to point me to that documentation? I don’t think I’ve seen yet instructions for installing just the engine