# Supported tags and respective `Dockerfile` links - [`7.10`, `7`, `LTS-2015`](https://github.com/nuxeo/docker-nuxeo/blob/f253a2398dbc39b42ca6ff84f2adeda8c1e8287e/7.10/Dockerfile) - [`8.10`, `8`, `LTS-2016`](https://github.com/nuxeo/docker-nuxeo/blob/f253a2398dbc39b42ca6ff84f2adeda8c1e8287e/8.10/Dockerfile) - [`9.10`, `9`, `LTS-2017`](https://github.com/nuxeo/docker-nuxeo/blob/f253a2398dbc39b42ca6ff84f2adeda8c1e8287e/9.10/Dockerfile) - [`10.10`, `10`, `LTS-2019`, `LTS`, `FT`, `latest`](https://github.com/nuxeo/docker-nuxeo/blob/f253a2398dbc39b42ca6ff84f2adeda8c1e8287e/10.10/Dockerfile) # Quick reference - **Where to get help**: [the Docker Community Forums](https://forums.docker.com/), [the Docker Community Slack](https://blog.docker.com/2016/11/introducing-docker-community-directory-docker-community-slack/), or [Stack Overflow](https://stackoverflow.com/search?tab=newest&q=docker) - **Where to file issues**: [https://github.com/nuxeo/docker-nuxeo/issues](https://github.com/nuxeo/docker-nuxeo/issues) - **Maintained by**: [Nuxeo](https://github.com/nuxeo/docker-nuxeo) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) [`amd64`](https://hub.docker.com/r/amd64/nuxeo/) - **Published image artifact details**: [repo-info repo's `repos/nuxeo/` directory](https://github.com/docker-library/repo-info/blob/master/repos/nuxeo) ([history](https://github.com/docker-library/repo-info/commits/master/repos/nuxeo)) (image metadata, transfer size, etc) - **Image updates**: [official-images PRs with label `library/nuxeo`](https://github.com/docker-library/official-images/pulls?q=label%3Alibrary%2Fnuxeo) [official-images repo's `library/nuxeo` file](https://github.com/docker-library/official-images/blob/master/library/nuxeo) ([history](https://github.com/docker-library/official-images/commits/master/library/nuxeo)) - **Source of this description**: [docs repo's `nuxeo/` directory](https://github.com/docker-library/docs/tree/master/nuxeo) ([history](https://github.com/docker-library/docs/commits/master/nuxeo)) # What is Nuxeo ? The Nuxeo Platform is a highly customizable and extensible content management platform for building business applications. ![logo](https://raw.githubusercontent.com/docker-library/docs/6538ea62bab8b051d0556c689c113202d48089ed/nuxeo/logo.png) # How to use this image ## Start a bare nuxeo instance ```console $ docker run --name mynuxeo -p 8080:8080 -d nuxeo ``` This image includes `EXPOSE 8080` (the nuxeo port). The default Nuxeo configuration is applied which feature an embedded database (H2), and an embedded Elasticsearch instance. This setup is not suitable for production. See below to know how to setup a production ready container by specifying environment variables. The Nuxeo platform is accesible at http://${DOCKER_HOST}:8080/ and default User and Password are Administrator/Administrator. ## Start a nuxeo with some additional packages ```console $ docker run --name mynuxeo --rm -ti -p 8080:8080 -e NUXEO_PACKAGES="nuxeo-web-ui nuxeo-dam nuxeo-drive nuxeo-showcase-content nuxeo-template-rendering nuxeo-template-rendering-samples nuxeo-spreadsheet" nuxeo ``` This will install the same image as above but comes with some demo Nuxeo packages to demonstrate its various usage (DAM, DM, search etc...) You can find additional informations on how to use this image in [Nuxeo documentation](https://doc.nuxeo.com/nxdoc/setting-up-your-nuxeo-environment/) ## Environment Variables The Nuxeo image uses several environment variable that allow to specify a more specific setup. ### `NUXEO_DB_TYPE` This defines the database type to use. By default it sets an H2 embedded database that is suitable for test purpose only. When specifying a DB type, other variable mays help : - `NUXEO_DB_HOST` : If `NUXEO_DB_TYPE` is defined, this variable is mandatory and has to point to the DB server host. - `NUXEO_DB_NAME` : name of the database to use (`nuxeo` by default) - `NUXEO_DB_USER` : user to connect to the database (`nuxeo` by default) - `NUXEO_DB_PASSWORD` : the password to connect to the database (`nuxeo` by default) ### `NUXEO_TEMPLATES` This variables allows to add additional [Nuxeo configuration templates](https://doc.nuxeo.com/x/0AB9) in the `nuxeo.templates` configuration variable. ### `NUXEO_ES_HOSTS` This variables allows to setup an external Elasticsearch cluster. Use a comma separated list of Elasticsearch hosts with the 9300 port. Additional environment vars may be setup like : - `NUXEO_ES_CLUSTER_NAME` : name of the Elasticsearch cluster to join - `NUXEO_ES_INDEX_NAME`: name of the index (`nuxeo` by default) - `NUXEO_ES_REPLICAS` : number or replicas (`1` by default). If not 0, it means that your ES cluster must have enough node to fullfill the replicas setup. - `NUXEO_ES_SHARDS` : number or shards (`5` by default). For instance : NUXEO_ES_HOSTS=es1:9300,es2:9300 NUXEO_ES_CLUSTER_NAME=dockerCluster NUXEO_ES_INDEX_NAME=nuxeo1 NUXEO_ES_REPLICAS=0 NUXEO_ES_SHARDS=5 ### `NUXEO_REDIS_HOST` In order to use Redis, just set up this variable to the Redis host address. ### `NUXEO_REDIS_PORT` If Redis is setup, you can ovewrite the default port configuration (default to 6379) ### `NUXEO_CLID` Allow to setup a CLID for Nuxeo Connect registration. This parameter is in the form `part1\npart2`, so depending on the environment you may have to escape the `\` character. You can find additional informations the registration process in the [Nuxeo documentation](https://doc.nuxeo.com/nxdoc/setting-up-your-nuxeo-environment/) ### `NUXEO_INSTALL_HOTFIX` This launch the install of latest Hotfixes. (`true` by default, but needs a `NUXEO_CLID` to be setup) ### `NUXEO_PACKAGES` Allows to install [Nuxeo packages](https://doc.nuxeo.com/x/aAfF) at startup. ### `NUXEO_URL` This variable sets the URL where your Nuxeo instance will be joinable. It's used for instance to refer to it when sending server's address in mails. ### `NUXEO_DATA` Location of the Nuxeo data directory. (`/var/lib/nuxeo/data` by default). You will likely customize NUXEO_DATA to map it on docker volume so data like binaries stay persistent. ### `NUXEO_LOG` Location of the Nuxeo log directory. (`/var/log/nuxeo` by default) ### `NUXEO_AUTOMATION_TRACE` If set to "true", this will enable the [automation trace mode](https://doc.nuxeo.com/display/NXDOC/Automation+Tracing). ### `NUXEO_DEV_MODE` 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) ### `NUXEO_DDL_MODE` Allows to setup [Database creation option](https://doc.nuxeo.com/x/hwQz#RepositoryConfiguration-DatabaseCreationOption) by fixing the `ddlMode` value. ### `NUXEO_CUSTOM_PARAM` Allows to add custom parameters to `nuxeo.conf`. Multiple parameters can be splitted by a `\n`. For instance: NUXEO_CUSTOM_PARAM="repository.clustering.enabled=false\nrepository.clustering.delay=1000" # How to extend this image ## Adding additional configuration If you would like to do additional setup in an image derived from this one, you can add a `/docker-entrypoint-initnuxeo.d/nuxeo.conf` file that will be appended to the end of the regular `nuxeo.conf` file. ```dockerfile FROM nuxeo:7.10 COPY nuxeo.conf /docker-entrypoint-initnuxeo.d/nuxeo.conf ``` If you need a root account to run some installation steps in your `Dockerfile`, then you need to put those steps between two `USER` command as the image is run with the user `1000` (nuxeo). For instance: ```dockerfile FROM nuxeo:LTS USER root RUN apt-get update && apt-get install -y --no-install-recommends vim USER 1000 ``` ## 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. ```dockerfile FROM nuxeo:7.10 USER root 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 git WORKDIR /tmp # Build ffmpeg ENV BUILD_YASM true ENV LIBFAAC true RUN git clone https://github.com/nuxeo/ffmpeg-nuxeo.git WORKDIR ffmpeg-nuxeo RUN ./prepare-packages.sh \ && ./build-yasm.sh \ && ./build-x264.sh \ && ./build-libvpx.sh \ && ./build-ffmpeg.sh \ && cd /tmp \ && rm -Rf ffmpeg-nuxeo \ && rm -rf /var/lib/apt/lists/* USER 1000 ``` ## Using Oracle JVM For the same reasons as `ffmpeg` we don't ship the Oracle JVM and rely by default on OpenJDK. If you want to use the Hotspot JVM you cans add the following lines in a derived Dockerfile ```dockerfile RUN apt-get remove -y --purge openjdk-8-jdk \ && add-apt-repository -y ppa:webupd8team/java && apt-get update \ && echo "debconf shared/accepted-oracle-license-v1-1 select true" | debconf-set-selections \ && echo "debconf shared/accepted-oracle-license-v1-1 seen true" | debconf-set-selections \ && apt-get install -y oracle-java8-installer \ && rm -rf /var/lib/apt/lists/* ``` ## Why is this images so big ? This image is big because it contains a lot of features. The nuxeo distribution itself is about 250M and in order to make cool things work like generating thumbnails or converting document to PDF we need some additional tools that are bundled in the image. We hope that in the future we will be able to delegate those conversions to external services that would be bundled as additional docker images. # License View [license information](http://doc.nuxeo.com/x/gIK7) for the software contained in this image. As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained). Some additional license information which was able to be auto-detected might be found in [the `repo-info` repository's `nuxeo/` directory](https://github.com/docker-library/repo-info/tree/master/repos/nuxeo). As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within.