项目作者: stakater-docker

项目描述 :
Dockerfile for nexus
高级语言: Dockerfile
项目地址: git://github.com/stakater-docker/nexus.git
创建时间: 2018-09-17T10:01:33Z
项目社区:https://github.com/stakater-docker/nexus

开源协议:

下载


Sonatype Nexus

Docker images for Sonatype Nexus Repository Manager 2 with the Oracle JDK.

Inspiration: https://github.com/sonatype/docker-nexus

To build:

  1. # docker build --rm --tag stakater/nexus .

To run (if port 8081 is open on your host):

  1. # docker run -d -p 8081:8081 --name nexus stakater/nexus

To determine the port that the container is listening on:

  1. # docker ps -l

To test:

  1. $ curl http://localhost:8081/nexus/service/local/status

To build, copy the Dockerfile and do the build:

  1. $ docker build --rm=true --tag=stakater/nexus .

Notes

  • URL to access nexus UI is http://server:8081/nexus

  • Default credentials are: admin / admin123

  • It can take some time (2-3 minutes) for the service to launch in a
    new container. You can tail the log to determine once Nexus is ready:

  1. $ docker logs -f nexus
  • Installation of Nexus is to /opt/sonatype/nexus. Notably:
    /opt/sonatype/nexus/conf/nexus.properties is the properties file.
    Parameters (nexus-work and nexus-webapp-context-path) defined
    here are overridden in the JVM invocation.

  • A persistent directory, /sonatype-work, is used for configuration,
    logs, and storage. This directory needs to be writeable by the Nexus
    process, which runs as UID 200.

  • Environment variables can be used to control the JVM arguments

    • CONTEXT_PATH, passed as -Dnexus-webapp-context-path. This is used to define the
      URL which Nexus is accessed. Defaults to ‘/nexus’
    • MAX_HEAP, passed as -Xmx. Defaults to 768m.
    • MIN_HEAP, passed as -Xms. Defaults to 256m.
    • JAVA_OPTS. Additional options can be passed to the JVM via this variable.
      Default: -server -XX:MaxPermSize=192m -Djava.net.preferIPv4Stack=true.
    • LAUNCHER_CONF. A list of configuration files supplied to the
      Nexus bootstrap launcher. Default: ./conf/jetty.xml ./conf/jetty-requestlog.xml

    These can be user supplied at runtime to control the JVM:

    1. $ docker run -d -p 8081:8081 --name nexus -e MAX_HEAP=768m stakater/nexus

Persistent Data

There are two general approaches to handling persistent
storage requirements with Docker. See Managing Data in
Containers
for
additional information.

  1. Use a data volume container. Since data volumes are persistent
    until no containers use them, a container can be created specifically for
    this purpose. This is the recommended approach.

    1. $ docker run -d --name nexus-data stakater/nexus echo "data-only container for Nexus"
    2. $ docker run -d -p 8081:8081 --name nexus --volumes-from nexus-data stakater/nexus
  2. Mount a host directory as the volume. This is not portable, as it
    relies on the directory existing with correct permissions on the host.
    However it can be useful in certain situations where this volume needs
    to be assigned to certain underlying storage.

    1. $ mkdir /some/dir/nexus-data && chown -R 200 /some/dir/nexus-data
    2. $ docker run -d -p 8081:8081 --name nexus -v /some/dir/nexus-data:/sonatype-work stakater/nexus

Adding Nexus Plugins

Creating a docker image based on stakater/nexus is the suggested
process: plugins should be expanded to /opt/sonatype/nexus/nexus/WEB-INF/plugin-repository.
See https://github.com/sonatype/docker-nexus/issues/9 for an example
concerning the Nexus P2 plugins.

Build Args

Each Dockerfile contains two build arguments (NEXUS_VERSION & NEXUS_DOWNLOAD_URL) that can be used to customize what
version of, and from where, Nexus Repository Manager is downloaded. This is useful mostly for testing purposes as the
Dockerfile may be dependent on a very specific version of Nexus Repository Manager.

  1. docker build --rm --tag nexus-custom-oss --build-arg NEXUS_VERSION=2.x.y --build-arg NEXUS_DOWNLOAD_URL=http://.../nexus-2.x.y-bundle.tar.gz oss/
  2. docker build --rm --tag nexus-custom-pro --build-arg NEXUS_VERSION=2.x.y --build-arg NEXUS_DOWNLOAD_URL=http://.../nexus-professional-2.x.y-bundle.tar.gz pro/

Getting Help

Looking to contribute to our Docker image but need some help? There’s a few ways to get information or our attention: