Join us for DockerCon LIVE on May 28th.Register for free!
✕
Explore
Pricing
Sign In
Explore
composer
product logo

composer

Docker Official Images
Composer is a dependency manager written in and for PHP.
10M+
Container Linux x86-64 ARM 64 ARM IBM Z 386 PowerPC 64 LE Application Frameworks Official Image
Linux - ARM 64 ( latest )
Copy and paste to pull this image
View Available Tags
DescriptionReviewsTags

Quick reference

  • Maintained by: Rob Bast, with contributions from the community.

  • Where to get help: the Docker Community Forums, the Docker Community Slack, or Stack Overflow

Supported tags and respective Dockerfile links

  • 1.10.6, 1.10, 1, latest
  • 1.9.3, 1.9

Quick reference (cont.)

  • Where to file issues: https://github.com/composer/docker/issues

  • Supported architectures: (more info) amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x

  • Published image artifact details: repo-info repo's repos/composer/ directory (history) (image metadata, transfer size, etc)

  • Image updates: official-images PRs with label library/composer
    official-images repo's library/composer file (history)

  • Source of this description: docs repo's composer/ directory (history)

What is Composer?

Composer is a tool for dependency management in PHP, written in PHP. It allows you to declare the libraries your project depends on and it will manage (install/update) them for you.

You can read more about Composer in our official documentation.

logo

How to use this image

Basic usage

Running the composer image is as simple as follows:

$ docker run --rm --interactive --tty \
  --volume $PWD:/app \
  composer install

Persistent cache / global configuration

You can bind mount the Composer home directory from your host to the container to enable a persistent cache or share global configuration:

$ docker run --rm --interactive --tty \
  --volume $PWD:/app \
  --volume ${COMPOSER_HOME:-$HOME/.composer}:/tmp \
  composer install

Note: this relies on the fact that the COMPOSER_HOME value is set to /tmp in the image by default.

Or if you are following the XDG specification:

$ docker run --rm --interactive --tty \
  --env COMPOSER_HOME \
  --env COMPOSER_CACHE_DIR \
  --volume ${COMPOSER_HOME:-$HOME/.config/composer}:$COMPOSER_HOME \
  --volume ${COMPOSER_CACHE_DIR:-$HOME/.cache/composer}:$COMPOSER_CACHE_DIR \
  --volume $PWD:/app \
  composer install

Filesystem permissions

By default, Composer runs as root inside the container. This can lead to permission issues on your host filesystem. You can work around this by running the container with a different user:

$ docker run --rm --interactive --tty \
  --volume $PWD:/app \
  --user $(id -u):$(id -g) \
  composer install

Private repositories / SSH agent

When you need to access private repositories, you will either need to share your configured credentials, or mount your ssh-agent socket inside the running container:

$ eval $(ssh-agent); \
  docker run --rm --interactive --tty \
  --volume $PWD:/app \
  --volume $SSH_AUTH_SOCK:/ssh-auth.sock \
  --env SSH_AUTH_SOCK=/ssh-auth.sock \
  composer install

Note: On OSX this requires Docker For Mac v2.2.0.0 or later, see docker/for-mac#410.

When combining the use of private repositories with running Composer as another user, you might run into non-existent user errors (thrown by ssh). To work around this, simply mount the host passwd and group files (read-only) into the container:

$ eval $(ssh-agent); \
  docker run --rm --interactive --tty \
  --volume $PWD:/app \
  --volume $SSH_AUTH_SOCK:/ssh-auth.sock \
  --volume /etc/passwd:/etc/passwd:ro \
  --volume /etc/group:/etc/group:ro \
  --env SSH_AUTH_SOCK=/ssh-auth.sock \
  --user $(id -u):$(id -g) \
  composer install

Troubleshooting

PHP version & extensions

Our image is aimed at quickly running Composer without the need for having a PHP runtime installed on your host. You should not rely on the PHP version in our container. We do not provide a Composer image for each supported PHP version because we do not want to encourage using Composer as a base image or a production image.

We try to deliver an image that is as lean as possible, built for running Composer only. Sometimes dependencies or Composer scripts require the availability of certain PHP extensions.

Suggestions:

  • (optimal) create your own build image and install Composer inside it.

    Note: Docker 17.05 introduced multi-stage builds, simplifying this enormously:

    COPY --from=composer /usr/bin/composer /usr/bin/composer
  • (alternatively) specify the target platform / extension(s) in your composer.json:

    {
     "config": {
       "platform": {
         "php": "MAJOR.MINOR.PATCH",
         "ext-something": "1"
       }
     }
    }
  • (discouraged) pass the --ignore-platform-reqs and / or --no-scripts flags to install or update:

    $ docker run --rm --interactive --tty \
     --volume $PWD:/app \
     composer install --ignore-platform-reqs --no-scripts

License

View license information 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 composer/ directory.

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.

Why Docker
OverviewWhat is a Container
Products
Product Overview
Product Offerings
Docker DesktopDocker Hub
Features
Container RuntimeDeveloper ToolsDocker AppKubernetes
Developers
Getting StartedPlay with DockerCommunityOpen SourceDocsHub Release Notes
Company
About UsResourcesBlogCustomersPartnersNewsroomEvents and WebinarsCareersContact Us
© 2020 Docker Inc. All rights reserved | Terms of Service | Privacy | Legal