docker - Dockerizing an existing Project -


i have web based application using play framework , scala dockerize. essentially, following:

  1. create docker file docker container play application
  2. be able pass in configuration docker file can build docker image either local code base or pull master branch

any suggestions on how started?

hm, no real need create new dockerfile when thankfully many existing ones exist purpose.

by searching on dockerhub these [1, 2] images play framework exist. can use these "as is" or base new image on them if reason want more additional functionality.

docker pull <image name> , docker run <image name> suffice them , running, plenty of parameters according needs

whatever choice may be, it's idea first familiarize concepts of docker reading docs (which written nicely).

additionally, address configuration requirements, focus on volumes in docker, allow share folder host container.


Comments

Popular posts from this blog

html - Outlook 2010 Anchor (url/address/link) -

javascript - Why does running this loop 9 times take 100x longer than running it 8 times? -

Getting gateway time-out Rails app with Nginx + Puma running on Digital Ocean -