Skip to content

Commit

Permalink
v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cnizzardini committed Jan 16, 2022
1 parent a86dbe4 commit c43713c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
9 changes: 6 additions & 3 deletions .docker/php/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,16 @@ if [ "$1" = 'php-fpm' ] || [ "$1" = 'php' ] || [ "$1" = 'bin/cakephp' ]; then
touch .gitkeep

composer require mixerapi/mixerapi

# optional:
composer require mixerapi/crud
composer require friendsofcake/search
bin/cake plugin load MixerApi/Crud

# optional:
composer require friendsofcake/search
bin/cake plugin load Search
bin/cake plugin load MixerApi/Crud
bin/cake plugin load MixerApi

bin/cake plugin load MixerApi
bin/cake mixerapi install --auto Y
fi

Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#
# container
# @see https://hub.docker.com/repository/docker/cnizzardini/php-fpm-alpine
# @see https://github.com/cnizzardini/php-fpm-alpine/tree/php-7.4
FROM cnizzardini/php-fpm-alpine:7.4-latest AS cakephp_php
# @see https://github.com/cnizzardini/php-fpm-alpine/tree/php-8.0
FROM cnizzardini/php-fpm-alpine:8.0-latest AS cakephp_php

ARG ENV=prod
ARG UID=1000
Expand Down

0 comments on commit c43713c

Please sign in to comment.