#docker (2019-11)

docker

All things docker

Archive: https://archive.sweetops.com/docker/

2019-11-01

2019-11-12

Erik Osterman (Cloud Posse) avatar
Erik Osterman (Cloud Posse)
quay/quay

Build, Store, and Distribute your Applications and Containers - quay/quay

3
Erik Osterman (Cloud Posse) avatar
Erik Osterman (Cloud Posse)

very cool!

2019-11-13

Erik Osterman (Cloud Posse) avatar
Erik Osterman (Cloud Posse)
Mirantis acquires Docker Enterprise – TechCrunchattachment image

Mirantis today announced that it has acquired Docker’s Enterprise business and team. Docker Enterprise was very much the heart of Docker’s product lineup, so this sale leaves Docker as a shell of its former, high-flying unicorn self. Docker itself, which installed a new CEO earlier this…

party_parrot1
vitaly.markov avatar
vitaly.markov

Does anyone use Docker Enterprise? troll

Mirantis acquires Docker Enterprise – TechCrunchattachment image

Mirantis today announced that it has acquired Docker’s Enterprise business and team. Docker Enterprise was very much the heart of Docker’s product lineup, so this sale leaves Docker as a shell of its former, high-flying unicorn self. Docker itself, which installed a new CEO earlier this…

Erik Osterman (Cloud Posse) avatar
Erik Osterman (Cloud Posse)

It just begs the question…. if they are not making any money from docker community edition

1
Erik Osterman (Cloud Posse) avatar
Erik Osterman (Cloud Posse)

and they were maybe making a little money from docker enterprise

Erik Osterman (Cloud Posse) avatar
Erik Osterman (Cloud Posse)

now that they sold that, what’s their plan to make ANY money?

1
Erik Osterman (Cloud Posse) avatar
Erik Osterman (Cloud Posse)

vitaly.markov avatar
vitaly.markov

I think docker as a company will be closed in the near future

johncblandii avatar
johncblandii

@vitaly.markov they can put ads in all of the docker images unless you pay. LOL

cool-doge2
loren avatar
Docker’s Next Chapter: Advancing Developer Workflows for Modern Apps - Docker Blogattachment image

Learn from Docker experts to simplify and advance your app development and management with Docker. Stay up to date on Docker events and new version announcements!

2019-11-14

2019-11-29

Igor avatar

Is using an entrypoint script the best way to take secrets from env vars and inject them into config files? I found a project called dockerfy that appears to do this with golang templating, but I’m hoping there is a better way.

Maciek Strömich avatar
Maciek Strömich

it depends on whether the code that’s being executed in the container can interact directly with system variables. e.g. in our case

• python apps are pulling sys envs from directly passed variables to container using os.getenv(“var_name”, “default)

• because nginx doesn’t do dynamic variable interpolation available containers are using entrypoint script which updates the variable placeholders in place using sed

1
Igor avatar

Another use case is injecting private key files into a container

Maciek Strömich avatar
Maciek Strömich

We pull the private keys from a KMS protected S3 location using entrypoint

1
Maciek Strömich avatar
Maciek Strömich

but I guess you can pull them into the host and mount the directory into the docker container as well

Igor avatar

Thank you @Maciek Strömich

2019-11-30

    keyboard_arrow_up