File tree 11 files changed +28
-261
lines changed
11 files changed +28
-261
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
services :
2
2
db :
3
- image : ${MAGECLI__DB_IMAGE }:${MAGECLI__DB_TAG }
3
+ image : ${MAGECLI_DB_IMAGE }:${MAGECLI_DB_TAG }
4
4
volumes :
5
5
- database:/var/lib/mysql
6
6
restart : on-failure:5
Original file line number Diff line number Diff line change 1
1
services :
2
2
elasticsearch :
3
- image : ${MAGECLI__ES_IMAGE }:${MAGECLI__ES_TAG }
3
+ image : ${MAGECLI_ES_IMAGE }:${MAGECLI_ES_TAG }
4
4
restart : on-failure:5
5
5
environment :
6
6
- discovery.type=single-node
Original file line number Diff line number Diff line change 8
8
description : project slug
9
9
default : localhost
10
10
script : |
11
- docker-compose --project-name {{ get "project" }} -f $MAGECLI__PATH /services/database.yaml -f $MAGECLI__PATH /services/elasticsearch.yaml down
11
+ docker-compose --project-name {{ get "project" }} -f $MAGECLI_PATH /services/database.yaml -f $MAGECLI_PATH /services/elasticsearch.yaml down
Original file line number Diff line number Diff line change
1
+ # !/usr/bin/env variant
2
+ tasks :
3
+ install :
4
+ description : installs magento to the backend services
5
+ script : |
6
+ php -d memory_limit=-1 bin/magento setup:install \
7
+ --base-url=http://$MAGECLI_BASE_URL \
8
+ --db-host=$MAGECLI_DB_HOST \
9
+ --db-name=$MAGECLI_DB_NAME \
10
+ --db-user=$MAGECLI_DB_USER \
11
+ --db-password=$MAGECLI_DB_PASS \
12
+ --admin-firstname=$MAGECLI_ADMIN_FIRSTNAME \
13
+ --admin-lastname=$MAGECLI_ADMIN_LASTNAME \
14
+ --admin-email=$MAGECLI_ADMIN_EMAIL \
15
+ --admin-user=$MAGECLI_ADMIN_USER \
16
+ --admin-password=$MAGECLI_ADMIN_PASSWORD \
17
+ --language=$MAGECLI_LANGUAGE \
18
+ --currency=$MAGECLI_CURRENCY \
19
+ --timezone=$MAGECLI_TIMEZONE \
20
+ --use-rewrites=$MAGECLI_USE_REWRITES \
21
+ --search-engine=$MAGECLI_SEARCH_ENGINE \
22
+ --elasticsearch-host=$MAGECLI_ELASTICSEARCH_HOST \
23
+ --elasticsearch-port=$MAGECLI_ELASTICSEARCH_PORT
Original file line number Diff line number Diff line change 5
5
- name : baseurl
6
6
type : string
7
7
description : " base url"
8
- default : " localhost:8200 "
8
+ default : " localhost:8080 "
9
9
script : |
10
10
php -S {{ get "baseurl" }} -t $(pwd)/pub/ $(pwd)/phpserver/router.php
Original file line number Diff line number Diff line change 8
8
description : project slug
9
9
default : localhost
10
10
script : |
11
- docker-compose --project-name {{ get "project" }} -f $MAGECLI__PATH /services/database.yaml -f $MAGECLI__PATH /services/elasticsearch.yaml up -d && sleep 3
11
+ docker-compose --project-name {{ get "project" }} -f $MAGECLI_PATH /services/database.yaml -f $MAGECLI_PATH /services/elasticsearch.yaml up -d && sleep 3
You can’t perform that action at this time.
0 commit comments