Hacker News new | ask | show | jobs
by beneills 3513 days ago
Do you plan to host a container registry? My use case is wanting to build an image containing SSL server certificates, which I cannot push to, e.g. Docker Hub.

Being able to do `hyper push myimage` would streamline the process.

1 comments

My solution for the moment is sending my ssl data to a volume, but having 100KiB in a 10GB (minimum) volume feels ugly.

    tar czf - ssl/ | hyper exec -i 7f0b148b478e bash -c "cd /root && cat - | tar xz"