Skip to content

josephlewisnz/silverstripe-docker

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

80 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Github CI

Supported Tags

Depreciated Tags (still available, but not updated)

Experimental Tags (available, but not tested)

What is Silverstripe CMS

Silverstripe CMS is a free and open source Content Management System (CMS) and Framework for creating and maintaining websites and web applications. It provides an out of the box web-based administration panel that enables users to make modifications to parts of the website, which includes a WYSIWYG website editor. The core of the software is Silverstripe Framework, a PHP Web application framework.

https://en.wikipedia.org/wiki/Silverstripe_CMS

Silverstripe CMS

How to use this image

Basic usage

Running the brettt89/silverstripe-web image with Apache is as simple as

$ docker run -d \
  --volume $PWD:/app \
  brettt89/silverstripe-web:7.4-apache

Create a Dockerfile in your PHP project

FROM brettt89/silverstripe-web:7.4-apache
ENV DOCUMENT_ROOT /usr/src/myapp

COPY . $DOCUMENT_ROOT
WORKDIR $DOCUMENT_ROOT

Create a docker-compose.yml in your PHP project

version: "3.8"
services:
  silverstripe:
    image: brettt89/silverstripe-web:7.4-apache
    volumes:
       - .:/var/www/html
    depends_on:
       - database
    environment:
       - DOCUMENT_ROOT=/var/www/html/public
       - SS_TRUSTED_PROXY_IPS=*
       - SS_ENVIRONMENT_TYPE=dev
       - SS_DATABASE_SERVER=database
       - SS_DATABASE_NAME=SS_mysite
       - SS_DATABASE_USERNAME=root
       - SS_DATABASE_PASSWORD=
       - SS_DEFAULT_ADMIN_USERNAME=admin
       - SS_DEFAULT_ADMIN_PASSWORD=password

  database:
    image: mysql:5.7
    environment:
       - MYSQL_ALLOW_EMPTY_PASSWORD=yes
    volumes:
       - db-data:/var/lib/mysql
volumes:
     db-data:

Environment Variables

Environment variables can be used to assist with configuration of your container. Below lists the exiting Environment variables that can be used to customize your container.

  • DOCUMENT_ROOT - Apache's document root location. (For SilverStripe 4 installations, you will want to set this to your /public directory. E.g. /var/www/html/public)

How to install more PHP extensions

Many extensions are already compiled into the image, so it's worth checking the output of php -m or php -i before going through the effort of compiling more.

We provide the helper scripts docker-php-extension-installer to more easily install PHP extensions.

FROM brettt89/silverstripe-web:7.4-apache
RUN install-php-extensions xdebug

Default extensions

The following extensions are installed by default on top of the default PHP image.

  • bcmath
  • mysqli
  • pdo
  • pdo_mysql
  • intl
  • ldap
  • gd
  • soap
  • tidy
  • xsl
  • zip
  • exif
  • gmp

Image Variants

The php images come in many flavors, each designed for a specific use case.

Some of these tags may have names like buster or stretch in them. These are the suite code names for releases of Debian and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian.

brettt89/silverstripe-web:<version>-apache

This image contains Debian's Apache httpd in conjunction with PHP (as mod_php) and uses mpm_prefork by default. See Basic Usage for examples on how to use.

brettt89/silverstripe-web:<version>-fpm

This variant contains PHP-FPM, which is a FastCGI implementation for PHP. See the PHP-FPM website for more information about PHP-FPM.

In order to use this image variant, some kind of reverse proxy (such as NGINX, Apache, or other tool which speaks the FastCGI protocol) will be required.

Some potentially helpful resources:

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).

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.

Issues

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

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.

About

Silverstripe - PHP Docker Environments

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Dockerfile 82.3%
  • Shell 14.3%
  • Makefile 2.4%
  • PHP 1.0%