4

What would be the way to load a certain binary from a certain container in docker from inside another container?

container 1: web container 2: ffmpeg

I would want to call ffmpeg binary living in container 2 from the container 1. Confused on how to process this

Rubytastic
  • 223
  • 1
  • 2
  • 14

1 Answers1

1

No, you can't do it straight forward.

You can do one of the following:

  • Make your web container communicate with ffmpeg container using RPC/agent.
  • Use queue service, so your ffmpeg container listen to the queue job.
  • Run docker inside docker.
Edward Samuel
  • 781
  • 7
  • 9