Skip to content

thebhushanp/docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

8a2f8b0 · Nov 12, 2020

History

51 Commits
Feb 28, 2020
Mar 1, 2020
Mar 1, 2020
Nov 12, 2020
Mar 27, 2020
Mar 9, 2020
Jan 15, 2020

Repository files navigation

build image

docker build -t imgname .

run container

docker run --name container_name imgname --bind 127.0.0.1

run container with port

docker run -d --name container_name -p 8888:8888 img_name

run container with autostart flag

docker run -d --name container_name -p 8888:8888 --restart unless-stopped image_name

start/stop/restart the container

docker restart container_name

remove container

docker rm containerid

remove image from docker

docker rmi imageName

format of Dockerfile

FROM anapsix/alpine-java
MAINTAINER bhushanp
COPY badam7-0.0.1-SNAPSHOT.jar /home/badam7-0.0.1-SNAPSHOT.jar
CMD ["java","-jar","/home/badam7-0.0.1-SNAPSHOT.jar"]
expose 8888 ### only used for inter-container communication

Volume

  • To create a volume -- docker volume create [name of volume]
  • To verify volume -- docker volume ls
  • To delete volume -- docker volume prune
  • If you want to remove a single volume you can do so by typing: -- docker volume rm [name of volume]
  • See more details on our created volume and probably most important where it will place the persisted files. -- docker inspect [name of volume]
  • To mount volume to app -- docker run -d -p 8000:3000 --name my-container --volume my-volume:/logs chrisnoring/node (-v, —-volume, the syntax looks like the following -v [name of volume]:[directory in the container], for example -v my-volume:/app)

Integration with Nexus

Update Docker App(ie image)

  • Bring down the container(docker stop container_name)
  • remove it (docker rm container_name)
  • rebuild the image (docker build -t imagename)
  • run the container again. (docker run -d --name container_name -p 8888:8888 image_name)

$headers = New-Object "System.Collections.Generic.Dictionary[[String],[String]]" $headers.Add("Content-Type", "application/x-www-form-urlencoded")

$body = "sess=dsfadssafsd&empid=%22a%22"

$response = Invoke-RestMethod 'kotak-staging.mobcast.in/external/validate/token' -Method 'POST' -Headers $headers -Body $body $response | ConvertTo-Json

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published