Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FIX #295 Adding documentation for docker tags #360

Merged
merged 1 commit into from
Sep 25, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions src/sphinx/DetailedTopics/docker.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ It may require these settings:

.. code-block:: scala

name in Docker := "sbt",
version in Docker <<= sbtVersion,
packageName in Docker := packageName.value,
version in Docker := version.value,
dockerBaseImage := "dockerfile/java",
dockerRepository := Some("dockeruser"),
dockerExposedPorts in Docker := Seq(9000, 9443),
Expand All @@ -32,8 +32,10 @@ It may require these settings:
Informational Settings
~~~~~~~~~~~~~~~~~~~~~~

``name in Docker``

``packageName in Docker``
The name of the package for Docker (if different from general name).
This will only affect the image name.

``version in Docker``
The version of the package for Docker (if different from general version). Often takes the form ``x.y.z``.
Expand Down