Skip to content

Latest commit

 

History

History
45 lines (29 loc) · 1.32 KB

README.md

File metadata and controls

45 lines (29 loc) · 1.32 KB

easy-build

This repository contains a collection of Docker files that help rebuilding embedded software distributions.

Please refer to the README.md file available under each subdirectory for details:

System Requirements

  • Docker 0.9.1 or later (tested on Ubuntu and CoreOS)
  • A fast Internet connection

Locally building an image from Dockerfile

Execute the following commands:

cd <build-something>
docker build -t mybuild .

Running locally built image

Execute the following commands:

docker run -i -t mybuild
su - build
# (depends on the specialized image being run)

Running pre-built image available at the public Docker index

Execute the following commands:

docker run -i -t gmacario/<build-something>
su - build
# (depends on the specialized image being run)