Run update.sh
This commit is contained in:
parent
348d5cca02
commit
cf4b5fca51
|
|
@ -3,7 +3,7 @@
|
|||
- [`2.5.5`, `2.5` (*jessie/2.5.5/Dockerfile*)](https://github.com/arangodb/arangodb-docker/blob/636cd874df38edd77a187c08e1803693b3d978d3/jessie/2.5.5/Dockerfile)
|
||||
- [`2.7`, `2.7.5` (*jessie/2.7.5/Dockerfile*)](https://github.com/arangodb/arangodb-docker/blob/dbfcc5f3edb37f622a2acd221b58106547b05fae/jessie/2.7.5/Dockerfile)
|
||||
- [`2.8`, `2.8.11` (*jessie/2.8.11/Dockerfile*)](https://github.com/arangodb/arangodb-docker/blob/05366cb4c6a6aab8e1ff9ca74c81b09d9a57b5b5/jessie/2.8.11/Dockerfile)
|
||||
- [`3.1`, `3.1.4`, `latest` (*jessie/3.1.4/Dockerfile*)](https://github.com/arangodb/arangodb-docker/blob/2edfe94b64e152e3ed20f3884d8782fe7beede21/jessie/3.1.4/Dockerfile)
|
||||
- [`3.1`, `3.1.5`, `latest` (*jessie/3.1.5/Dockerfile*)](https://github.com/arangodb/arangodb-docker/blob/beb00ee7d7ec6b320d50ff5d8155734df2295938/jessie/3.1.5/Dockerfile)
|
||||
|
||||
For more information about this image and its history, please see [the relevant manifest file (`library/arangodb`)](https://github.com/docker-library/official-images/blob/master/library/arangodb). This image is updated via [pull requests to the `docker-library/official-images` GitHub repo](https://github.com/docker-library/official-images/pulls?q=label%3Alibrary%2Farangodb).
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
# Supported tags and respective `Dockerfile` links
|
||||
|
||||
- [`0.9.4`, `latest` (*Dockerfile*)](https://github.com/nats-io/nats-docker/blob/d37917c2830bfe3b54de8d92ac36b62cc1309cfc/Dockerfile)
|
||||
- [`0.9.6`, `latest` (*Dockerfile*)](https://github.com/nats-io/nats-docker/blob/b2c678c7bcc6bc8d68fb33cb1f169f4b66db308d/Dockerfile)
|
||||
|
||||
For more information about this image and its history, please see [the relevant manifest file (`library/nats`)](https://github.com/docker-library/official-images/blob/master/library/nats). This image is updated via [pull requests to the `docker-library/official-images` GitHub repo](https://github.com/docker-library/official-images/pulls?q=label%3Alibrary%2Fnats).
|
||||
|
||||
|
|
@ -23,7 +23,7 @@ For detailed information about the virtual/transfer sizes and individual layers
|
|||
# use -p or -P as needed.
|
||||
|
||||
$ docker run -d --name nats-main nats
|
||||
[INF] Starting nats-server version 0.9.4
|
||||
[INF] Starting nats-server version 0.9.6
|
||||
[INF] Starting http monitor on 0.0.0.0:8222
|
||||
[INF] Listening for client connections on 0.0.0.0:4222
|
||||
[INF] Server is ready
|
||||
|
|
@ -36,7 +36,7 @@ $ docker run -d --name=nats-2 --link nats-main nats --routes=nats-route://ruser:
|
|||
|
||||
# If you want to verify the routes are connected, try
|
||||
$ docker run -d --name=nats-2 --link nats-main nats --routes=nats-route://ruser:T0pS3cr3t@nats-main:6222 -DV
|
||||
[INF] Starting nats-server version 0.9.4
|
||||
[INF] Starting nats-server version 0.9.6
|
||||
[DBG] Go build version go1.6.3
|
||||
[INF] Starting http monitor on 0.0.0.0:8222
|
||||
[INF] Listening for client connections on 0.0.0.0:4222
|
||||
|
|
@ -86,43 +86,44 @@ cluster {
|
|||
|
||||
```bash
|
||||
Server Options:
|
||||
-a, --addr HOST Bind to HOST address (default: 0.0.0.0)
|
||||
-p, --port PORT Use PORT for clients (default: 4222)
|
||||
-P, --pid FILE File to store PID
|
||||
-m, --http_port PORT Use HTTP PORT for monitoring
|
||||
-ms,--https_port PORT Use HTTPS PORT for monitoring
|
||||
-c, --config FILE Configuration File
|
||||
-a, --addr <host> Bind to host address (default: 0.0.0.0)
|
||||
-p, --port <port> Use port for clients (default: 4222)
|
||||
-P, --pid <file> File to store PID
|
||||
-m, --http_port <port> Use port for http monitoring
|
||||
-ms,--https_port <port> Use port for https monitoring
|
||||
-c, --config <file> Configuration file
|
||||
|
||||
Logging Options:
|
||||
-l, --log FILE File to redirect log output
|
||||
-l, --log <file> File to redirect log output
|
||||
-T, --logtime Timestamp log entries (default: true)
|
||||
-s, --syslog Enable syslog as log method
|
||||
-r, --remote_syslog Syslog server addr (udp://localhost:514)
|
||||
-r, --remote_syslog <addr> Syslog server addr (udp://localhost:514)
|
||||
-D, --debug Enable debugging output
|
||||
-V, --trace Trace the raw protocol
|
||||
-DV Debug and Trace
|
||||
-DV Debug and trace
|
||||
|
||||
Authorization Options:
|
||||
--user user User required for connections
|
||||
--pass password Password required for connections
|
||||
--user <user> User required for connections
|
||||
--pass <password> Password required for connections
|
||||
--auth <token> Authorization token required for connections
|
||||
|
||||
TLS Options:
|
||||
--tls Enable TLS, do not verify clients (default: false)
|
||||
--tlscert FILE Server certificate file
|
||||
--tlskey FILE Private key for server certificate
|
||||
--tlsverify Enable TLS, very client certificates
|
||||
--tlscacert FILE Client certificate CA for verification
|
||||
--tlscert <file> Server certificate file
|
||||
--tlskey <file> Private key for server certificate
|
||||
--tlsverify Enable TLS, verify client certificates
|
||||
--tlscacert <file> Client certificate CA for verification
|
||||
|
||||
Cluster Options:
|
||||
--routes <rurl-1, rurl-2> Routes to solicit and connect
|
||||
--cluster <cluster-url> Cluster URL for solicited routes
|
||||
--no_advertise <bool> Advertise known cluster IPs to clients
|
||||
|
||||
|
||||
Common Options:
|
||||
-h, --help Show this message
|
||||
-v, --version Show version
|
||||
--help_tls TLS help.
|
||||
--help_tls TLS help
|
||||
```
|
||||
|
||||
# License
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
- [`webProfile6` (*ga/developer/webProfile6/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/b946ebd7c0a7d3953419723bc8a3c3041943439e/ga/developer/webProfile6/Dockerfile)
|
||||
- [`webProfile7` (*ga/developer/webProfile7/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/b946ebd7c0a7d3953419723bc8a3c3041943439e/ga/developer/webProfile7/Dockerfile)
|
||||
- [`javaee7`, `latest` (*ga/developer/javaee7/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/b946ebd7c0a7d3953419723bc8a3c3041943439e/ga/developer/javaee7/Dockerfile)
|
||||
- [`beta` (*beta/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/c63e151757a992fd5eb9da11d8bbf9501468b39b/beta/Dockerfile)
|
||||
- [`beta` (*beta/Dockerfile*)](https://github.com/WASdev/ci.docker/blob/904bb14fa750b3dca27a031dc823362a536943dd/beta/Dockerfile)
|
||||
|
||||
For more information about this image and its history, please see [the relevant manifest file (`library/websphere-liberty`)](https://github.com/docker-library/official-images/blob/master/library/websphere-liberty). This image is updated via [pull requests to the `docker-library/official-images` GitHub repo](https://github.com/docker-library/official-images/pulls?q=label%3Alibrary%2Fwebsphere-liberty).
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue