INsReady / docker-drupal-commerce

Docker Image Packaging for Drupal
https://hub.docker.com/r/insready/drupal-commerce/
Other
4 stars 4 forks source link
docker drupal drupal-commerce

Supported tags and respective Dockerfile links

This image is updated via pull requests to the INsReady/docker-drupal-commerce GitHub repo.

What is Drupal Commerce?

Drupal Commerce is used to build eCommerce websites and applications of all sizes. At its core it is lean and mean, enforcing strict development standards and leveraging the greatest features of Drupal and major modules like Views and Rules for maximum flexibility.

Drupal Commerce Documentation

How to use this image

The basic pattern for starting a drupal commerce instance is:

$ docker run --name some-drupal -d insready/drupal-commerce

If you'd like to be able to access the instance from the host without the container's IP, standard port mappings can be used:

$ docker run --name some-drupal -p 8080:80 -d insready/drupal-commerce

Then, access it via http://localhost:8080 or http://host-ip:8080 in a browser.

There are multiple database types supported by this image, most easily used via standard container linking. In the default configuration, SQLite can be used to avoid a second container and write to flat-files. More detailed instructions for different (more production-ready) database types follow.

When first accessing the webserver provided by this image, it will go through a brief setup process. The details provided below are specifically for the "Set up database" step of that configuration process.

MySQL

$ docker run --name some-drupal --link some-mysql:mysql -d insready/drupal-commerce

PostgreSQL

$ docker run --name some-drupal --link some-postgres:postgres -d insready/drupal-commerce

Adding additional libraries / extensions

This image does not provide any additional PHP extensions or other libraries, even if they are required by popular plugins. There are an infinite number of possible plugins, and they potentially require any extension PHP supports. Including every PHP extension that exists would dramatically increase the image size.

If you need additional PHP extensions, you'll need to create your own image FROM this one. The documentation of the php image explains how to compile additional extensions. Additionally, the drupal:7 Dockerfile has an example of doing this.

The following Docker Hub features can help with the task of keeping your dependent images up-to-date:

License

View license information for the software contained in this image.

User Feedback

Documentation

Documentation for this image is stored in the README.md of the insready/docker-drupal-commerce GitHub repo. Be sure to familiarize yourself with the repository's README.md file before attempting a pull request.

Issues

If you have any problems with or questions about this image, please contact us through a GitHub issue.

You can also reach many of the official image maintainers via the #docker-library IRC channel on Freenode.

Contributing

You are invited to contribute new features, fixes, or updates, large or small; we are always thrilled to receive pull requests, and do our best to process them as fast as we can.

Before you start to code, we recommend discussing your plans through a GitHub issue, especially for more ambitious contributions. This gives other contributors a chance to point you in the right direction, give you feedback on your design, and help you find out if someone else is working on the same thing.