Open mih opened 1 year ago
I want the setup described in #197, so I use
❯ cat container/image/.gitattributes
**/*json annex.largefiles=nothing
repositories annex.largefiles=nothing
**/VERSION annex.largefiles=nothing
# build the image and track with datalad
datalad run -m "Build docker image with analysis environment" -i container/Dockerfile -o container/image sh -c "rm -rf container/image; docker build -t remodnav:latest container && python -m datalad_container.adapters.docker save remodnav:latest container/image && echo '**/*json annex.largefiles=nothing\nrepositories annex.largefiles=nothing\n**/VERSION annex.largefiles=nothing' > container/image/.gitattributes"
# register with datalad-container
$ datalad containers-add \
-i container/image
--call-fmt '{python} -m datalad_container.adapters.docker run {img} {cmd}' \
docker
In my specific case, I want something custom in the docker run
setup, but something like this is not possible ATM
--call-fmt '{python} -m datalad_container.adapters.docker run -e HOME=/tmp {img} {cmd}'
I would want to declare options to docker run
, maybe like the above, but this is not supported ATM.
Scenario: I have a local Dockerfile, I built a local Docker image, I use it locally.
Now I want to preserve this image, I do not care about Docker hub and getting accounts and rate limits and payments and plan. I just have that local Docker image, and I want to use it in a datalad dataset via
datalad containers-run
.