0% found this document useful (0 votes)
65 views

Docker Explination (Another Copy)

The document provides instructions for setting up a development environment using Docker. It details stopping and removing existing containers, exporting an image ID, running a script to create a new container using that image, installing a software development kit inside the container, compiling and building code by setting up dependencies and environments, and accessing the container over SSH.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as ODT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
65 views

Docker Explination (Another Copy)

The document provides instructions for setting up a development environment using Docker. It details stopping and removing existing containers, exporting an image ID, running a script to create a new container using that image, installing a software development kit inside the container, compiling and building code by setting up dependencies and environments, and accessing the container over SSH.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as ODT, PDF, TXT or read online on Scribd
You are on page 1/ 1

docker container stop $(docker container ls -aq)

docker container rm $(docker container ls -aq)

export IMAGE_ID=-------
cd docker-worker-generator/
./contrib/create_container 0 $IMAGE_ID;

---------------------------------Inside docker----------------

install_sdk ~/share/poky-agl-glibc-x86_64-mebicas3-image-aarch64-toolchain-3.0.0+snapshot.sh
source /xdt/sdk/environment-setup-aarch64-agl-linux

-------------------------------compiling code-------------------
build the linked dependencies
----------------------------running---------------------------------------
make and run your code

ssh -p -------------------------
its like username of your virtual pc
it will generate different names. so its not a problem.

password is 'devel'

coming to poky-agl-glibc-x86_64-mebicas3-image-aarch64-toolchain-3.0.0+snapshot.sh

is like os image for you virtual generated system

ssd/share/ is specific folder allocated to this virtual pc

there are so many poky images, at present we are working on aarch64 architecture (we are working in
car system, which architecture is based on aarch64)

we will keep this os image in ssd/share. install_sdk is command to run this image. ~/share/ is location of
image.

You might also like