DockerBuilder: allow for remote Docker daemons

Open
#18 2 comments 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Assessment

Difficulty
5/5
Estimated time
Over a week
Newbie friendliness
30/100
Issue type
Feature
Clarity
Mostly clear
Activity status
Stale
Tech stack
docker, typescript

Research direction

Start by locating the DockerBuilder implementation and the current Docker client construction shown in the issue. Trace how build context contents are provided to the daemon, then determine the configuration needed for a remote HTTPS daemon and how that context could be transferred. Done means a configured remote daemon can build the image without requiring a local Docker installation.

Written by the indexing model from the issue text.

Description

enhancement

Currently, Dockter requires Docker to be installed on the system. That's because we're using:

const docker = new Docker() # Connects to local Docker daemon via '/var/run/docker.sock'

But, in theory, we could allow for a remote Docker daemon to build images (it would require that the folder contents be zipped up and send across the network). e.g.

const docker = new Docker({
  protocol: 'https',
  host: 'some.docker-server.org',
  port: process.env.DOCKER_PORT || 2375,
  ca: fs.readFileSync('ca.pem'),
  cert: fs.readFileSync('cert.pem'),
  key: fs.readFileSync('key.pem')
})

Not a high priority, but could be useful for users who don't have Docker installed and don't want to.

Dominant language
TypeScript
Stars
124
Forks
10
Avg merge
3h 28m
Merged PRs (30d)
1

Contributor guide

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

More from stencila/dockta

All issues in stencila/dockta

Similar issues

More TypeScript issues

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.