8000 GitHub - mjuuso/docker-jenkins-demo: Demo of building Docker images in Jenkins 2
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

mjuuso/docker-jenkins-demo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

Demo of building Docker images in Jenkins 2

Install Docker

https://docs.docker.com/engine/installation/

To get started with the demo

Build the Docker image:

docker build . -t my_awesome_app

To run it:

docker run -it my_awesome_app

To push it to a registry:

docker tag my_awesome_app registry.hostname.here/my_awesome_app
docker push registry.hostname.here/my_awesome_app

To show running containers:

docker ps

To execute a shell inside a running container:

docker exec -it <container-id> bash

To kill a running container:

docker kill <container-id>

About

Demo of building Docker images in Jenkins 2

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0