refactor(): change name of composer wrapup script

pull/3/head
Hardware 2016-10-05 08:40:34 +02:00
parent e85a4b9d4f
commit 6da7238d17
No known key found for this signature in database
GPG Key ID: EC6DF6F90263EDEA
3 changed files with 4 additions and 4 deletions

View File

@ -40,7 +40,7 @@ COPY config.sql /flarum/app/config.sql
COPY nginx.conf /etc/nginx/nginx.conf COPY nginx.conf /etc/nginx/nginx.conf
COPY php-fpm.conf /etc/php7/php-fpm.conf COPY php-fpm.conf /etc/php7/php-fpm.conf
COPY opcache.ini /etc/php7/conf.d/00_opcache.ini COPY opcache.ini /etc/php7/conf.d/00_opcache.ini
COPY composer /usr/local/bin/composeur COPY extension /usr/local/bin/extension
COPY s6.d /etc/s6.d COPY s6.d /etc/s6.d
COPY run.sh /usr/local/bin/run.sh COPY run.sh /usr/local/bin/run.sh

View File

@ -134,19 +134,19 @@ docker-compose up -d
#### Install an extension #### Install an extension
``` ```
docker exec -ti flarum composeur require some/extension docker exec -ti flarum extension require some/extension
``` ```
#### Remove an extension #### Remove an extension
``` ```
docker exec -ti flarum composeur remove some/extension docker exec -ti flarum extension remove some/extension
``` ```
#### List all extensions #### List all extensions
``` ```
docker exec -ti flarum composeur list docker exec -ti flarum extension list
``` ```
### Screenshot ### Screenshot

View File