From 8ab08a6789ddd9a7ee727293b48ae4fa32b06679 Mon Sep 17 00:00:00 2001 From: Damien Metzler Date: Wed, 9 Mar 2016 15:52:28 +0100 Subject: [PATCH] Add documentation on new options --- nuxeo/content.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/nuxeo/content.md b/nuxeo/content.md index d31eb37e0..6cc9f2904 100644 --- a/nuxeo/content.md +++ b/nuxeo/content.md @@ -99,6 +99,12 @@ If set to "true", this will enable the [automation trace mode](https://doc.nuxeo If set to "true", this will enable the development mode that will allow [hot reload](https://doc.nuxeo.com/display/CORG/Supporting+Hot+Reload) when developing with [Nuxeo Studio](http://www.nuxeo.com/products/studio/). +### `NUXEO_BINARY_STORE` +Tells the location of the binary store which configure the [binary storage](https://doc.nuxeo.com/x/fYYZAQ) + +### `NUXEO_TRANSIENT_STORE` +Tells the location of [the transient storage](http://doc.nuxeo.com/display/NXDOC/Transient+Store) + # How to extend this image ## Adding additional configuration @@ -110,6 +116,10 @@ FROM nuxeo:7.10 ADD nuxeo.conf /nuxeo.conf ``` +## Launching custom shell scripts + +You can add your own shell scripts in a special `/docker-entrypoint-initnuxeo.d` directory. When ending in `.sh`, they will be run on default entrypoint startup. + ## ffmpeg As it contains some non-free Codecs, we dont't ship a binary version of `ffmpeg` as part of this image. However, you can simply add the compilation in a derived images by adding these lines to your Dockerfile @@ -118,7 +128,7 @@ As it contains some non-free Codecs, we dont't ship a binary version of `ffmpeg` FROM nuxeo:7.10 RUN echo "deb http://httpredir.debian.org/debian jessie non-free" >> /etc/apt/sources.list -RUN apt-get update && apt-get install -y --no-install-recommends libfaac-dev sudo git +RUN apt-get update && apt-get install -y --no-install-recommends libfaac-dev git WORKDIR /tmp # Build ffmpeg