...
- Container names are selectable options to run deploy.sh only on the specified containers: elastices, postgres, nuxeo, cb, service, postfix. If deploy.sh is run without any containers specified, all containers except postfix will be handled. Postfix container will only be installed (or updated) when specified expressly;
- -rmc will stop and remove containers listed in deploy.sh command;
- -rmi will remove all unused images (ie. Images for which no containers are run);
- -logsrv will configure nuxeo and cb containers to send log messages to a graylog server in GELF format. The server details and properties of the communication are configured in the "
dms.conf
"; - -v (or –vv, -vvv, -vvvv) options set log level for the nuxeo and cb containers. Default log level is ERROR. -v, -vv, -vvv, -vvvv sets to WARN, INFO, DEBUG, TRACE respectively.
- -local will run the deploy script from a local only config. It is strongly discouraged to use this in production.
...
Examples:
Code Block |
---|
./deploy.sh elastices postgres nuxeo -rmc -rmi ./deploy.sh nuxeo cb -rmc ./deploy.sh nuxeo cb -rmc -rmi -vvv |
...