Questions tagged [moby]

Moby Project - a collaborative project by created docker for the container ecosystem to assemble container-based systems

Moby is an open-source project created by Docker to advance the software containerization movement. It provides a “Lego set” of dozens of components, the framework for assembling them into custom container-based systems, and a place for all container enthusiasts to experiment and exchange ideas.

At the core of Moby is a framework to assemble specialized container systems. It provides:

  • A library of containerized components for all vital aspects of a container system: OS, container runtime, orchestration, infrastructure management, networking, storage, security, build, image distribution, etc.
  • Tools to assemble the components into runnable artifacts for a variety of platforms and architectures: bare metal (both x86 and Arm); executables for Linux, Mac and Windows; VM images for popular cloud and virtualization providers.
  • A set of reference assemblies which can be used as-is, modified, or used as inspiration to create your own. All Moby components are containers, so creating new components is as easy as building a new OCI-compatible container.

Links :

Home Page

Github

37 questions
2
votes
0 answers

Docker on Windows permission denied when git stash a file

With the latest version of Docker for Windows. I got a php git repository that 2 of my containers use. I modify a random file on the host : README.md Then I do these git command one after the others : git stash # ok git stash pop # ok git stash #…
Jerem
  • 460
  • 5
  • 13
2
votes
1 answer

How to use Docker's moby to create a custom made container system?

Docker/Moby announced the 17.06 CE release today, however it's not clear to me how they actually crafted the 17.06 using moby. There isn't 17.06 branch on the docker/moby github project, likewise no information on their moby project website. They…
0x90
  • 39,472
  • 36
  • 165
  • 245
2
votes
0 answers

How to access the moby linux kernel modules in Docker for Windows?

Docker for Windows 1.13.1 is bundled with Linux kernel moby: root@6e1b23cc65e5:/# uname -a Linux 6e1b23cc65e5 4.9.8-moby #1 SMP Wed Feb 8 09:56:43 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux But when I try to load a module the command line…
user725408
  • 336
  • 3
  • 8
1
vote
1 answer

Rancher Desktop dockerd alternative for host.docker.internal

I am using Rancher Desktop with dockerd(moby) When I use docker desktop, I can connect to the host machine from the container using host.docker.internal But while using Rancher Desktop, host.docker.internal is not pointing to the localhost(I'm…
1
vote
0 answers

How to apply AppArmour to IoT Edge from a deployment manifest

How can I apply an apparmor profile to IoT Edge modules? Background, If I run docker run -it --security-opt apparmor=docker-azureiotsecurity hello-world I will see the container run with the correct apparmor profile. If I inspect the container,…
Kevin Saye
  • 299
  • 1
  • 8
1
vote
0 answers

Asimbench benchmark running in gem5 fails with "fatal: Unable to find destination for [0x40008000:0x40008040] on system.iobus"

I have downloaded asimbench files which provided in the gem5.org website and I have modified the config/common/FSConfig.py with following changes: def makeArmSystem(..) .................. self.cf0 = CowIdeDisk(driveID='master') self.cf2 =…
YAZ
  • 11
  • 1
1
vote
0 answers

Cannot communicate from Fabric peer1 to orderer in a docker swarm network on multiple hosts

I have successfully set up a Hyperledger Fabric network on our cloud VMs. So far, we have no issues bringing up peers on a localhost configuration (all peers brought up on localhost). However, I tried to switch to a multi-host configuration using…
Ashish Chandra
  • 111
  • 1
  • 8
1
vote
0 answers

Running multiple, independent, Docker daemon on Windows with Hyper-V isolation and LCOW

I am trying to run multiple Docker daemon configured to run containers with Hyper-V isolation and LCOW on the same Windows 10 machine. I was able to configure the daemons to manage their own data files, but I am still struggling to get the network…
GGirard
  • 1,145
  • 1
  • 13
  • 33
1
vote
1 answer

Running IoT Edge Module in NVIDIA Runtime

I am working on an IoTEdge Module with image detection capabilities. For the image processing/analysing I am using Detectron which needs to run in an docker nvidia runtime. Is it possible to enable an nvidia runtime for IoTEdge Modules and Docker…
cykone
  • 113
  • 8
1
vote
0 answers

how to build docker-ce engine and an own image for Tizen?

Currently, I'm doing POC of docker in Tizen OS for arm architecture. I just want to know how to build an own image. Downloaded the code from "https://github.com/moby/moby." Stuck with below todo, 1) whats the build command in Linux, a host pc which…
Satheesh
  • 11
  • 3
1
vote
1 answer

Allow outbound container networking through vpnkit

I have a linuxkit built VM here with a custom container service that I am trying to run. services: ... - name: net-manager image: aemengo/net-manager:6bcc223a83e8a303a004bc6f6e383a54a3d19c55-amd64 net: host capabilities: -…
mango
  • 5,577
  • 4
  • 29
  • 41
0
votes
1 answer

Docker Swarm Service creation is stuck, How to make sure it exits instead of getting stuck

I'm using docker swarm here and used docker service create, it is stuck due to some mount error or any service pre-requisite which is not being met. But instead of forever getting stuck. I want it to exit when such a failure scenario has come…
axel
  • 21
  • 7
0
votes
0 answers

Golang Docker SDK : Pushing large image into remote registry failing

Im having hard time understanding how image push works var authConfig = types.AuthConfig{ Username: "amokkara", Password: "dummy", ServerAddress: "https://docker.repo.dummy.dummy.com", } ctx, cancel :=…
aditya
  • 65
  • 5
0
votes
1 answer

I can no lognger use orignal docker after installing rootless-kit, only rootless mode can work

After installing rootless-kit, the original docker cannot be used. When I execute the command "sudo docker images", it only shows the images downloaded in rootless mode. Even if the environment variables in the ~/.bashrc and ~/.profile files are…
ccnankai
  • 1
  • 3
0
votes
1 answer

Docker swarm will not restart after the loss of a recently added manager

I have a one-node swarm (A) that has a couple long-running services in it. I recently added a new node (B), initially as a worker, but then promoted it to a manager. However, now the swarm is broken and docker on A simply will not restart. I…
lurscher
  • 25,930
  • 29
  • 122
  • 185