PHP 7.2 with Apache 2.4 with CraftCMS is pre-installed. Intended for plugin dev and testing.
91
Do not use this in production!! This is intended for development and plugin use only.
version: '3'
services:
web:
image: 'flipbox/craftcms:3'
ports:
- '80:80'
- '443:443'
volumes:
- '.:/var/www/html/plugin'
- './storage/logs:/var/www/html/storage/logs'
environment:
XDEBUG_ON: "yes"
XDEBUG_HOST: "host.docker.internal"
XDEBUG_IDEKEY: "PHPSTORM"
DB_SERVER: db
DB_USER: craft
DB_PASSWORD: craft
DB_DATABASE: test
PLUGIN_REQUIRE: "flipboxfactory/saml-sp"
PLUGIN_VERSION: "1.0.0-RC4"
db:
image: 'mysql:5.6'
restart: always
volumes:
- '.:/app'
ports:
- '3306:3306'
environment:
MYSQL_ROOT_PASSWORD: password
MYSQL_DATABASE: test
MYSQL_USER: craft
MYSQL_PASSWORD: craft
Content type
Image
Digest
Size
352 MB
Last updated
over 7 years ago
docker pull flipbox/craftcms:3