mirror of https://github.com/docker/compose.git
Added missing options
The stdin_open and tty options are supported by fig but were missing from the documentation. Signed-off-by: Christophe Labouisse <christophe@labouisse.org>
This commit is contained in:
parent
d399d386ae
commit
91c90a722a
|
@ -182,7 +182,7 @@ dns_search:
|
||||||
- dc2.example.com
|
- dc2.example.com
|
||||||
```
|
```
|
||||||
|
|
||||||
### working\_dir, entrypoint, user, hostname, domainname, mem\_limit, privileged, restart
|
### working\_dir, entrypoint, user, hostname, domainname, mem\_limit, privileged, restart, stdin\_open, tty
|
||||||
|
|
||||||
Each of these is a single value, analogous to its [docker run](https://docs.docker.com/reference/run/) counterpart.
|
Each of these is a single value, analogous to its [docker run](https://docs.docker.com/reference/run/) counterpart.
|
||||||
|
|
||||||
|
@ -198,4 +198,7 @@ mem_limit: 1000000000
|
||||||
privileged: true
|
privileged: true
|
||||||
|
|
||||||
restart: always
|
restart: always
|
||||||
|
|
||||||
|
stdin_open: true
|
||||||
|
tty: true
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in New Issue