Skip to content

Commit c920151

Browse files
author
Matthew Fisher
committed
docs(logger): update README
1 parent fe42699 commit c920151

2 files changed

Lines changed: 5 additions & 14 deletions

File tree

logger/README.md

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,9 @@ the [Deis Project](https://github.com/deis/deis).
1010

1111
## Usage
1212

13-
Please consult the [Makefile](Makefile) for current instructions on how to build, test, push,
14-
install, and start **deis/logger**.
15-
16-
## Environment Variables
17-
18-
* **DEBUG** enables verbose output if set
19-
* **ETCD_PORT** sets the TCP port on which to connect to the local etcd
20-
daemon (default: *4001*)
21-
* **ETCD_PATH** sets the etcd directory where the logger announces
22-
its configuration (default: */deis/logs*)
23-
* **ETCD_TTL** sets the time-to-live before etcd purges a configuration
24-
value, in seconds (default: *10*)
25-
* **PORT** sets the TCP port on which the logger listens (default: *514*)
13+
```bash
14+
$ docker run deis/logger --help
15+
```
2616

2717
## License
2818

logger/image/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
FROM ubuntu-debootstrap:14.04
22

3-
CMD ["/bin/logger --publish"]
3+
ENTRYPOINT ["/bin/logger"]
4+
CMD ["--publish"]
45
EXPOSE 514
56

67
ADD . /

0 commit comments

Comments
 (0)