Skip to content

Marslanali/docker-cpp-hello-world

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Docker-cpp-Hello-world

Deploying Simple C++ applications using Docker

Docker installation

On Debian and Ubuntu:

Set up the docker repository.

sudo apt-get update
sudo apt-get install apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"

Install Docker Container

sudo apt-get update
sudo apt-get install docker-ce

Verify the installation

sudo docker run hello-world

Deploying a simple Hello World C++ applications using Docker

The First Docker Container: The Base Build Container

About

Deploying Simple C++ applications using Docker

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published