-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
19 lines (19 loc) · 1.14 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "jquirossoto/wordpress-multisite-ecs-efs-rds",
"authors": [
{
"name": "Jesús Quirós"
}
],
"require": {},
"scripts": {
"docker-up": "docker-compose -f ./docker-compose.yml up -d",
"docker-down": "docker-compose kill",
"docker-run": "docker run -it -p 80:80 -v $(pwd)/docker/wordpress:/var/www/html --rm --name='wordpress' --network=wordpress-multisite-ecs-efs-rds_wordpress-network --env-file ./wordpress.env wordpress@sha256:8374f670cef98736f47b21b52dbeabbb356d15ab31978b77f638df7e21cd371a",
"cf-stack-deploy": "aws cloudformation deploy --template-file ./template.yaml --stack-name wordpress --capabilities CAPABILITY_NAMED_IAM",
"cf-stack-delete": "aws cloudformation delete-stack --stack-name wordpress",
"cf-stack-describe": "aws cloudformation describe-stacks --stack-name wordpress",
"cf-template-validate": "aws cloudformation validate-template --template-body file://template.yaml",
"ecs-bash": "aws ecs execute-command --region us-east-1 --cluster WP-ECSCluster --container wordpress --command \"/bin/bash\" --interactive --task"
}
}