Actions
Bug #7191
closedport-a-pipeline docs assume root inside of arvados/jobs docker container, but default user is crunch
Story points:
-
Description
In port-a-pipeline (https://arvados.org/projects/arvados/wiki/Port_a_Pipeline) under the section "Create Docker image with Arvados command-line tools and other tools we want" the docs suggest that the default user inside of the arvados/jobs docker container is "root", but it appears to actually be "crunch"
It appears also that sudo is not installed in the container, so I think the best work around for this is to ask `docker run` to run interactively as root instead of the default.
In other words,
$ docker run -ti arvados/jobs /bin/bash
could instead be:
$ docker run -ti -u root arvados/jobs /bin/bash
Updated by Joshua Randall over 10 years ago
- Status changed from New to Closed
- Assigned To set to Joshua Randall
- % Done changed from 0 to 100
Actions