All of lore.kernel.org
 help / color / mirror / Atom feed
* Docker and Yocto
@ 2016-07-15 13:56 Daniel.
  2016-07-15 14:43 ` Bruce Ashfield
  0 siblings, 1 reply; 4+ messages in thread
From: Daniel. @ 2016-07-15 13:56 UTC (permalink / raw)
  To: yocto

Is anybory out there using Docker containers inside Yocto images? I
have some machines running at ARMv7 architeture and I want to know if
there is somebody already using Docker on non-x86 embedded platforms
and if it can help deploying applications in this case too!?

Regards,

-- 
"Do or do not. There is no try"
  Yoda Master


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Docker and Yocto
  2016-07-15 13:56 Docker and Yocto Daniel.
@ 2016-07-15 14:43 ` Bruce Ashfield
  2016-07-15 20:10   ` Daniel.
  0 siblings, 1 reply; 4+ messages in thread
From: Bruce Ashfield @ 2016-07-15 14:43 UTC (permalink / raw)
  To: Daniel.; +Cc: yocto

[-- Attachment #1: Type: text/plain, Size: 796 bytes --]

Yep, that's something that we test consistently with the docker support in
meta-virtualization.

Bruce

On Fri, Jul 15, 2016 at 9:56 AM, Daniel. <danielhilst@gmail.com> wrote:

> Is anybory out there using Docker containers inside Yocto images? I
> have some machines running at ARMv7 architeture and I want to know if
> there is somebody already using Docker on non-x86 embedded platforms
> and if it can help deploying applications in this case too!?
>
> Regards,
>
> --
> "Do or do not. There is no try"
>   Yoda Master
> --
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto
>



-- 
"Thou shalt not follow the NULL pointer, for chaos and madness await thee
at its end"

[-- Attachment #2: Type: text/html, Size: 1437 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Docker and Yocto
  2016-07-15 14:43 ` Bruce Ashfield
@ 2016-07-15 20:10   ` Daniel.
  2016-07-18  2:51     ` Bruce Ashfield
  0 siblings, 1 reply; 4+ messages in thread
From: Daniel. @ 2016-07-15 20:10 UTC (permalink / raw)
  To: Bruce Ashfield; +Cc: yocto

Hi Bruce,

Thanks for answering me. What is your use case? I've been reading
about Docker and seems to do some nice magic. I was wondering if would
be possible and productive to deploy embedded applications using
Docker... Also the Docker swarm seems really cool stuff, are you using
this too?

Regards,


2016-07-15 11:43 GMT-03:00 Bruce Ashfield <bruce.ashfield@gmail.com>:
> Yep, that's something that we test consistently with the docker support in
> meta-virtualization.
>
> Bruce
>
> On Fri, Jul 15, 2016 at 9:56 AM, Daniel. <danielhilst@gmail.com> wrote:
>>
>> Is anybory out there using Docker containers inside Yocto images? I
>> have some machines running at ARMv7 architeture and I want to know if
>> there is somebody already using Docker on non-x86 embedded platforms
>> and if it can help deploying applications in this case too!?
>>
>> Regards,
>>
>> --
>> "Do or do not. There is no try"
>>   Yoda Master
>> --
>> _______________________________________________
>> yocto mailing list
>> yocto@yoctoproject.org
>> https://lists.yoctoproject.org/listinfo/yocto
>
>
>
>
> --
> "Thou shalt not follow the NULL pointer, for chaos and madness await thee at
> its end"



-- 
"Do or do not. There is no try"
  Yoda Master


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Docker and Yocto
  2016-07-15 20:10   ` Daniel.
@ 2016-07-18  2:51     ` Bruce Ashfield
  0 siblings, 0 replies; 4+ messages in thread
From: Bruce Ashfield @ 2016-07-18  2:51 UTC (permalink / raw)
  To: Daniel., Bruce Ashfield; +Cc: yocto

On 2016-07-15 4:10 PM, Daniel. wrote:
> Hi Bruce,
>
> Thanks for answering me. What is your use case? I've been reading
> about Docker and seems to do some nice magic. I was wondering if would
> be possible and productive to deploy embedded applications using
> Docker... Also the Docker swarm seems really cool stuff, are you using
> this too?

For me, there's no single use case. But yes, you could use it as
a deployment engine on an embedded platform. But the same can be
said about lxc, or systemd-nspawn, etc.

For most embedded systems, there is quite a bit of overhead, layering
and general magic if you use the docker engine as-is. Hence why lxc
or other container management may be a better fit.

Docker excels at ease of use, container repositories/registries, etc.

With the latest version bump that I did in meta-virt, we are now into
open container support via runc and containerd, which docker uses. But
for me, I'm more interested in using runc directly for lower overhead
containers, but with a runtime capable of executing docker containers
if required.

Whatever orchestration you use is the last piece of the puzzle, and
there are many to chose from .. and what you chose (if any), really
does depend on the problem you are trying to solve.

We are hacking on a containerized runtime based on oe-core, and other
layers from the ecosystem. It is lxc based right now, but I'm about
to throw the switch to runc/OCI as a replacement .. which is where
you can see I was headed with my description above :)

Bruce

p.s. the playground is: https://github.com/OverC/meta-overc



>
> Regards,
>
>
> 2016-07-15 11:43 GMT-03:00 Bruce Ashfield <bruce.ashfield@gmail.com>:
>> Yep, that's something that we test consistently with the docker support in
>> meta-virtualization.
>>
>> Bruce
>>
>> On Fri, Jul 15, 2016 at 9:56 AM, Daniel. <danielhilst@gmail.com> wrote:
>>>
>>> Is anybory out there using Docker containers inside Yocto images? I
>>> have some machines running at ARMv7 architeture and I want to know if
>>> there is somebody already using Docker on non-x86 embedded platforms
>>> and if it can help deploying applications in this case too!?
>>>
>>> Regards,
>>>
>>> --
>>> "Do or do not. There is no try"
>>>   Yoda Master
>>> --
>>> _______________________________________________
>>> yocto mailing list
>>> yocto@yoctoproject.org
>>> https://lists.yoctoproject.org/listinfo/yocto
>>
>>
>>
>>
>> --
>> "Thou shalt not follow the NULL pointer, for chaos and madness await thee at
>> its end"
>
>
>



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-07-18  2:51 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-07-15 13:56 Docker and Yocto Daniel.
2016-07-15 14:43 ` Bruce Ashfield
2016-07-15 20:10   ` Daniel.
2016-07-18  2:51     ` Bruce Ashfield

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.