mirror of https://github.com/docker/compose.git
Merge pull request #335 from orchardup/document-missing-yml-options
Document missing .yml options
This commit is contained in:
commit
5131eaeba0
16
docs/yml.md
16
docs/yml.md
|
@ -129,3 +129,19 @@ dns:
|
|||
- 8.8.8.8
|
||||
- 9.9.9.9
|
||||
```
|
||||
|
||||
### working\_dir, entrypoint, user, hostname, domainname, mem\_limit, privileged
|
||||
|
||||
Each of these is a single value, analogous to its [docker run](https://docs.docker.com/reference/run/) counterpart.
|
||||
|
||||
```
|
||||
working_dir: /code
|
||||
entrypoint: /code/entrypoint.sh
|
||||
user: postgresql
|
||||
|
||||
hostname: foo
|
||||
domainname: foo.com
|
||||
|
||||
mem_limit: 1000000000
|
||||
privileged: true
|
||||
```
|
||||
|
|
Loading…
Reference in New Issue