Skip to content
This repository has been archived by the owner on Jan 25, 2021. It is now read-only.

Saboteur777/craftcms-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 

Repository files navigation

craftcms-docker

Last commit Docker Build mode Docker layers count Docker Pull count Keybase.io PGP

Separated nginx + php-fpm sister images are available.

This Docker image aims to be as simple as possible to run Craft CMS - if you have special dependencies, define this image as a base in your Dockerfile (FROM: webmenedzser/craftcms:latest) and extend it as you like.

The image will be based on the php:apache image, which ships the latest stable PHP.

Current PHP version: 7.3.1

Change user and group of PHP

You can change which user should run PHP - just build your image by extending this one, e.g.:

Dockerfile

FROM: webmenedzser/craftcms:latest

[...]
# Add APACHE_RUN_USER user
RUN useradd -u 1000 -G www-data -M saboteur
[...]

AND

docker-compose.yml

[...]
    environment:
      - APACHE_RUN_USER=#1000
[...]

This will instruct Docker to add a new user during the build process with user ID 1000, add it to the www-data group and run Apache as user 1000.

Add custom PHP settings

You can easily add new PHP settings to the image. Just place your .ini file in e.g. the .docker/php folder, and COPY it:

Dockerfile

FROM: webmenedzser/craftcms:latest

[...]
COPY .docker/web/settings-override.ini /usr/local/etc/php/conf.d/
[...]

Opcache is enabled by default, so if you want to disable it (for local dev) you can do it with the method mentioned above:

disable-opcache.ini

opcache.enable = 0;

Example usage

docker-compose.yml

volumes:
  database_volume: {}

version: '3.6'
services:

  web:
    image: webmenedzser/craftcms:latest
    volumes:
      - ./:/var/www/

  database:
    image: mariadb:latest
    volumes:
     - database_volume:/var/lib/mysql

Releases

No releases published

Packages

No packages published