Skip to content
This repository was archived by the owner on Mar 30, 2020. It is now read-only.

Commit 70ac6af

Browse files
committed
core: file support, documentation
1 parent cc45267 commit 70ac6af

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

documentation/configuration.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,11 @@ An environment is a logical group of any number of Docker servers. Dockership su
6969
* `Repository` (mandatory): Github repository SSH clone URL, the branch can be added to the end of the URL preceded of a `!` (eg.: `git@github.com:mcuadros/dockership.git!master`)
7070
* `Dockerfile` (default: Dockerfile): the path to the Dockerfile at the repository.
7171
* `RelatedRepositories` (optional, multiple): SSH clone URL to dependent repositories. (Link to more explanatory document)
72-
* `History` (default: 3): Number to old images you want to keep in each Docker server.
72+
* `History` (default: 3): Number to old images you want to keep in each Docker server.
7373
* `NoCache` (optional): Avoid to use the Docker cache (like --no-cache at `docker build`)
7474
* `Port` (multiple, optional): container port to expose, format: `<host-addr>:<host-port>:<container-port>/<proto>` (like -p at `docker run`), additionaly the port can be configured just for one enviroment adding it to end of the port preceded by a `@` (eg: `2.2.2.2:80:80/tcp@live`)
7575
* `Restart` (optional, default: no): restart policy to apply when a container exits (no, on-failure[:max-retry], always) (like --restart at `docker run`)
76+
* `File` (multiple, optional): files to be uploaded to the image along to the Dokerfile itself, you must specify here all files used on the Dokerfile with `ADD`
7677
* `Link` (multiple, optional): creates a Link to other project, when this project is deployed the linked projects are restarted (like -P at `docker run`)
7778
* `Volume` (multiple, optional): mounts a Data Volume Container (like -v at `docker run`)
7879
* `VolumeFrom` (multiple, optional): mounts a Data Volumes From a specified container (like --volumes-from at `docker run`)

0 commit comments

Comments
 (0)