docker - Dockerizing an existing Project -
i have web based application using play framework , scala dockerize. essentially, following:
- create docker file docker container play application
- 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
Post a Comment