Skip to content

Latest commit

 

History

History
29 lines (25 loc) · 555 Bytes

readme.md

File metadata and controls

29 lines (25 loc) · 555 Bytes

Run the following command:

$ docker-compose up -d     //Runs containers from the docker-file

Some basic docker commands:

$ docker container ls     //Lists all the container
$ docker container -a     //Lists all the container
$ docker images   //Lists all the images

$ docker run
$ docker start
$ docker stop

To run ubuntu machine:

$ docker run -it --name macine_name ubuntu

To INSPECT container:

$ docker inspect CONTAINER_ID

To enter in a container:

$ docker-compose exec workspace bash