소스 검색

Document missing .yml options

Signed-off-by: Aanand Prasad <[email protected]>
Aanand Prasad 11 년 전
부모
커밋
b559880a80
1개의 변경된 파일16개의 추가작업 그리고 0개의 파일을 삭제
  1. 16 0
      docs/yml.md

+ 16 - 0
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
+```